diff --git a/example.wlk b/example.wlk deleted file mode 100644 index cd96e18..0000000 --- a/example.wlk +++ /dev/null @@ -1,9 +0,0 @@ -object pepita { - var energy = 100 - - method energy() = energy - - method fly(minutes) { - energy = energy - minutes * 3 - } -} \ No newline at end of file diff --git a/intensamente.wlk b/intensamente.wlk new file mode 100644 index 0000000..871fbff --- /dev/null +++ b/intensamente.wlk @@ -0,0 +1,101 @@ +class Persona { + const edad + + const emociones = [] + + // 1 + method esAdolecente() = edad.between(12, 19) + + // 2 + method agregarEmocion(emocion) = emociones.add(emocion) + + //3 + method puedeExplotar() = emociones.all({e => e.puedeLiberarse()}) + + //4 +method hacerEvento(evento) { + emociones.forEach({ e => e.liberar(evento) }) +}} + +//6 +class Grupo{ + const integrantes=[] + method vivirEvento(evento)= integrantes.forEach{p=>p.hacerEvento(evento)} +} +class Emocion { + + var property intensidad=500 + var property cantidadEventos = 0 + var property criterioIntensidad = 5 + + // Método para determinar si una emoción puede liberarse + method puedeLiberarse() = true + + //5 + method cambiarCriterioIntensidad(nuevoCriterio) { + criterioIntensidad = nuevoCriterio + } + + method intensidad()=intensidad + + method liberar(evento) { + cantidadEventos += 1 + if(self.puedeLiberarse()){ + intensidad -= evento.impacto() + } + } + + method intensidadElevada() = intensidad>criterioIntensidad +} + +class Furia inherits Emocion(){ + const palabrotas=[] + + override method puedeLiberarse() = self.tienePalabrota7() and self.intensidadElevada() + method tienePalabrota7() = palabrotas.any{p=>p.size()>7} + +} + +class Alegria inherits Emocion{ + + override method initialize() { + intensidad = intensidad.abs() + } + override method puedeLiberarse() = self.intensidadElevada() && self.eventosPar() + method eventosPar() = cantidadEventos%2 == 0 + + } + +class Tristeza inherits Emocion{ + var property causa = "melancolia" + override method puedeLiberarse() = causa != "melancolia" && self.intensidadElevada() + override method liberar(evento){ + super(evento) + causa = evento.descripcion() + } +} + +class DesagradoYtemor inherits Emocion{ + override method puedeLiberarse() = cantidadEventos > intensidad && self.intensidadElevada() +} + +//Se libera si el impacto de la última emocion fue mayor al criterio de intensidad +class Especial inherits Emocion{ + var property recuerdo = 10 + method intesidad() = 100 + override method puedeLiberarse() = recuerdo > criterioIntensidad + override method liberar(evento){ + super(evento) + recuerdo = evento.impacto() + } +} + +class Evento{ + const property impacto + const descripcion + + method descripcion() = descripcion +} + +const tristeza = new Alegria(intensidad=-100) +const evento1 = new Evento(impacto=2,descripcion="") \ No newline at end of file diff --git a/log/wollok.log b/log/wollok.log index 594d05c..156fc5c 100644 --- a/log/wollok.log +++ b/log/wollok.log @@ -2,3 +2,1432 @@ {"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-05-21T14:48:08.744Z"} {"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-05-21T14:48:08.938Z"} {"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-05-21T15:07:42.143Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":365,"timestamp":"2024-11-22T11:40:52.836Z"} +{"level":"info","message":"onRequest - WORKSPACE_URI:file:///c%3A/Users/Dell/Desktop/2024-parcial-o-EitanFiszer","timestamp":"2024-11-22T11:40:52.855Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":183,"timestamp":"2024-11-22T11:40:53.040Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":225,"timestamp":"2024-11-22T11:40:53.271Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":350,"timestamp":"2024-11-22T11:40:53.623Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":210,"timestamp":"2024-11-22T11:40:53.834Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":201,"timestamp":"2024-11-22T11:40:54.057Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":285,"timestamp":"2024-11-22T11:40:54.344Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":124,"timestamp":"2024-11-22T11:40:54.470Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:41:12.532Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:12.532Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:12.675Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:12.738Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:41:12.841Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:41:12.945Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:12.952Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:12.953Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:12.953Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:13.110Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:13.472Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:13.570Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:13.764Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:13.844Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:14.235Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:14.357Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:14.498Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:14.559Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:14.782Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:14.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:16.323Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:16.375Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:16.548Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 1 | class Persona{\n 2 | const\n> 3 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 1 | class Persona{\n 2 | const\n> 3 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:16.815Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 1 | class Persona{\n 2 | const \n> 3 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 1 | class Persona{\n 2 | const \n> 3 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:41:16.919Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:17.429Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T11:41:17.540Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.ed [Field]{4a190c} at example.wlk:2 exhausted all cases without a match example.Persona.ed [Field]{4a190c} at example.wlk:2 exhausted all cases without a match","stack":"Error: example.Persona.ed [Field]{4a190c} at example.wlk:2 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:41:17.640Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.eda [Field]{1935d7} at example.wlk:2 exhausted all cases without a match example.Persona.eda [Field]{1935d7} at example.wlk:2 exhausted all cases without a match","stack":"Error: example.Persona.eda [Field]{1935d7} at example.wlk:2 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:41:17.796Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.edad [Field]{2ebac1} at example.wlk:2 exhausted all cases without a match example.Persona.edad [Field]{2ebac1} at example.wlk:2 exhausted all cases without a match","stack":"Error: example.Persona.edad [Field]{2ebac1} at example.wlk:2 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:41:17.970Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":131,"timestamp":"2024-11-22T11:41:22.801Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:22.802Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:41:23.851Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":135,"timestamp":"2024-11-22T11:41:47.882Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":225,"timestamp":"2024-11-22T11:41:48.246Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":158,"timestamp":"2024-11-22T11:41:48.404Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T11:41:49.066Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":152,"timestamp":"2024-11-22T11:41:49.219Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T11:41:50.950Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":153,"timestamp":"2024-11-22T11:41:51.104Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:41:51.386Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:54.623Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:54.683Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:54.824Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:41:55.230Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{5bfc31} at example.wlk:-- exhausted all cases without a match [Return]{5bfc31} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{5bfc31} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:41:59.731Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:41:59.839Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:59.840Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:41:59.896Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:00.061Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:00.202Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":145,"timestamp":"2024-11-22T11:42:00.348Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{cf50a1} at example.wlk:-- exhausted all cases without a match [Return]{cf50a1} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{cf50a1} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:42:00.418Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:01.295Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:01.498Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:01.924Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:42:02.032Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T11:42:04.351Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:42:06.215Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:42:06.864Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:16.303Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T11:42:22.063Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T11:42:22.169Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T11:42:22.770Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T11:42:23.028Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T11:42:23.348Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T11:42:25.434Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:25.435Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:25.571Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:25.637Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:25.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:25.944Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T11:42:26.047Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:26.210Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:26.266Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 3 | describe \"group of tests for pepita\" {\n 4 | \n> 5 | const =\n | ^\n 6 | test \"pepita has initial energy\" {\n 7 | assert.equals(100, pepita.energy())\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 3 | describe \"group of tests for pepita\" {\n 4 | \n> 5 | const =\n | ^\n 6 | test \"pepita has initial energy\" {\n 7 | assert.equals(100, pepita.energy())\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:42:26.690Z"} +{"level":"error","message":"✘ Completions for node failed: Error: testExample.\"group of tests for pepita\".y [Field]{03da75} at testExample.wtest:5 exhausted all cases without a match testExample.\"group of tests for pepita\".y [Field]{03da75} at testExample.wtest:5 exhausted all cases without a match","stack":"Error: testExample.\"group of tests for pepita\".y [Field]{03da75} at testExample.wtest:5 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:42:27.344Z"} +{"level":"error","message":"✘ Completions for node failed: Error: testExample.\"group of tests for pepita\".yo [Field]{a21447} at testExample.wtest:5 exhausted all cases without a match testExample.\"group of tests for pepita\".yo [Field]{a21447} at testExample.wtest:5 exhausted all cases without a match","stack":"Error: testExample.\"group of tests for pepita\".yo [Field]{a21447} at testExample.wtest:5 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:42:27.498Z"} +{"level":"error","message":"✘ Completions for node failed: Error: testExample.\"group of tests for pepita\".yo [Field]{ac6d4e} at testExample.wtest:5 exhausted all cases without a match testExample.\"group of tests for pepita\".yo [Field]{ac6d4e} at testExample.wtest:5 exhausted all cases without a match","stack":"Error: testExample.\"group of tests for pepita\".yo [Field]{ac6d4e} at testExample.wtest:5 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:42:29.620Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:29.756Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T11:42:31.646Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T11:42:31.820Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":120,"timestamp":"2024-11-22T11:42:35.533Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":118,"timestamp":"2024-11-22T11:42:37.688Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{41f396} at testExample.wtest:7 exhausted all cases without a match [Send]{41f396} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{41f396} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:42:46.359Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:46.451Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:46.564Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{352153} at testExample.wtest:7 exhausted all cases without a match [Send]{352153} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{352153} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:42:46.942Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9fd2aa} at testExample.wtest:7 exhausted all cases without a match [Send]{9fd2aa} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{9fd2aa} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:42:47.501Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:47.592Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:47.768Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{30859b} at testExample.wtest:7 exhausted all cases without a match [Send]{30859b} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{30859b} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:42:47.929Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:42:50.621Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T11:42:54.020Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b72b74} at testExample.wtest:7 exhausted all cases without a match [Send]{b72b74} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{b72b74} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:42:55.753Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:55.850Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:55.908Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:56.761Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:42:56.835Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T11:42:56.942Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7d4b59} at testExample.wtest:7 exhausted all cases without a match [Send]{7d4b59} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{7d4b59} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:42:59.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{67a92d} at testExample.wtest:7 exhausted all cases without a match [Send]{67a92d} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{67a92d} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:01.052Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b2915e} at testExample.wtest:7 exhausted all cases without a match [Send]{b2915e} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{b2915e} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:01.338Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d872b9} at testExample.wtest:7 exhausted all cases without a match [Send]{d872b9} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{d872b9} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:01.510Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d78003} at testExample.wtest:7 exhausted all cases without a match [Send]{d78003} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{d78003} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:01.671Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T11:43:01.949Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e33e06} at testExample.wtest:7 exhausted all cases without a match [Send]{e33e06} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{e33e06} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:01.969Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e8c6c3} at testExample.wtest:7 exhausted all cases without a match [Send]{e8c6c3} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{e8c6c3} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:02.785Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{da376a} at testExample.wtest:7 exhausted all cases without a match [Send]{da376a} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{da376a} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:03.019Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":122,"timestamp":"2024-11-22T11:43:03.143Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{cccf9d} at testExample.wtest:7 exhausted all cases without a match [Send]{cccf9d} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: [Send]{cccf9d} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:43:03.415Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T11:43:03.527Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":333,"timestamp":"2024-11-22T11:43:10.954Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T11:43:18.367Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T11:43:18.869Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T11:43:20.491Z"} +{"failures":[{"error":["wollok.lib.AssertionException: Value was not true"," at testExample.\"group of tests for pepita\".\"Yo soy adolecente\" [testExample.wtest:6]"],"test":"testExample.\"group of tests for pepita\".\"Yo soy adolecente\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":312,"timestamp":"2024-11-22T11:43:28.229Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T11:43:31.032Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":129,"timestamp":"2024-11-22T11:43:31.162Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":308,"timestamp":"2024-11-22T11:43:34.729Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:43:40.018Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T11:43:53.997Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":165,"timestamp":"2024-11-22T11:43:54.164Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":213,"timestamp":"2024-11-22T11:43:54.475Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T11:43:54.836Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":141,"timestamp":"2024-11-22T11:43:54.978Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:43:54.979Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T11:43:55.089Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:43:55.090Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":222,"timestamp":"2024-11-22T11:43:55.311Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:43:55.400Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":164,"timestamp":"2024-11-22T11:43:55.565Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T11:43:55.699Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:43:55.701Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T11:43:55.833Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:43:55.841Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":166,"timestamp":"2024-11-22T11:43:56.008Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":196,"timestamp":"2024-11-22T11:43:56.211Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":162,"timestamp":"2024-11-22T11:43:56.374Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:43:56.542Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":150,"timestamp":"2024-11-22T11:43:56.693Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T11:43:56.801Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.em [Field]{6efc70} at example.wlk:4 exhausted all cases without a match example.Persona.em [Field]{6efc70} at example.wlk:4 exhausted all cases without a match","stack":"Error: example.Persona.em [Field]{6efc70} at example.wlk:4 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:43:56.827Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:43:57.010Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.emoc [Field]{15af43} at example.wlk:4 exhausted all cases without a match example.Persona.emoc [Field]{15af43} at example.wlk:4 exhausted all cases without a match","stack":"Error: example.Persona.emoc [Field]{15af43} at example.wlk:4 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:43:57.178Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.emocion [Field]{2d6b10} at example.wlk:4 exhausted all cases without a match example.Persona.emocion [Field]{2d6b10} at example.wlk:4 exhausted all cases without a match","stack":"Error: example.Persona.emocion [Field]{2d6b10} at example.wlk:4 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:43:57.640Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:44:01.997Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:02.844Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:02.901Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:04.817Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:04.879Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:05.257Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:05.530Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:05.806Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:06.028Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:06.210Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:06.543Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:06.862Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:07.166Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:07.242Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:07.431Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:07.653Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:09.598Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:44:09.711Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:44:09.943Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 10 | class Emocion{\n 11 | const\n> 12 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 10 | class Emocion{\n 11 | const\n> 12 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:10.042Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 10 | class Emocion{\n 11 | const \n> 12 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 10 | class Emocion{\n 11 | const \n> 12 | }\n | ^\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:10.043Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.no [Field]{5faacc} at example.wlk:11 exhausted all cases without a match example.Emocion.no [Field]{5faacc} at example.wlk:11 exhausted all cases without a match","stack":"Error: example.Emocion.no [Field]{5faacc} at example.wlk:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:10.365Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.nom [Field]{4e5247} at example.wlk:11 exhausted all cases without a match example.Emocion.nom [Field]{4e5247} at example.wlk:11 exhausted all cases without a match","stack":"Error: example.Emocion.nom [Field]{4e5247} at example.wlk:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:10.551Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.nomb [Field]{50c76d} at example.wlk:11 exhausted all cases without a match example.Emocion.nomb [Field]{50c76d} at example.wlk:11 exhausted all cases without a match","stack":"Error: example.Emocion.nomb [Field]{50c76d} at example.wlk:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:10.787Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.nombre [Field]{864ff4} at example.wlk:11 exhausted all cases without a match example.Emocion.nombre [Field]{864ff4} at example.wlk:11 exhausted all cases without a match","stack":"Error: example.Emocion.nombre [Field]{864ff4} at example.wlk:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:11.056Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:18.067Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:18.116Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:18.261Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 8 | method\n 9 | \n> 10 | }\n | ^\n 11 | \n 12 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 8 | method\n 9 | \n> 10 | }\n | ^\n 11 | \n 12 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:19.034Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 8 | method \n 9 | \n> 10 | }\n | ^\n 11 | \n 12 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 8 | method \n 9 | \n> 10 | }\n | ^\n 11 | \n 12 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:19.084Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:19.591Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:20.250Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 8 | method \n 9 | \n> 10 | }\n | ^\n 11 | \n 12 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 8 | method \n 9 | \n> 10 | }\n | ^\n 11 | \n 12 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:44:20.255Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:21.686Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{141383} at example.wlk:-- exhausted all cases without a match [Return]{141383} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{141383} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:32.714Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:32.805Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2fb458} at example.wlk:-- exhausted all cases without a match [Return]{2fb458} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2fb458} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:32.907Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{9b347d} at example.wlk:-- exhausted all cases without a match [Return]{9b347d} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{9b347d} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:34.092Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:34.184Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:34.232Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":149,"timestamp":"2024-11-22T11:44:35.733Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:35.735Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{8c4204} at example.wlk:-- exhausted all cases without a match [Return]{8c4204} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{8c4204} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:36.581Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:36.588Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{971c45} at example.wlk:-- exhausted all cases without a match [Return]{971c45} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{971c45} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:37.861Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:37.953Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{4fb84b} at example.wlk:-- exhausted all cases without a match [Return]{4fb84b} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{4fb84b} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:38.065Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{8d00a3} at example.wlk:-- exhausted all cases without a match [Return]{8d00a3} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{8d00a3} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:38.698Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5aaa08} at example.wlk:8 exhausted all cases without a match [Send]{5aaa08} at example.wlk:8 exhausted all cases without a match","stack":"Error: [Send]{5aaa08} at example.wlk:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:39.721Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b558ab} at example.wlk:-- exhausted all cases without a match [Return]{b558ab} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b558ab} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:44:39.721Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:39.806Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:40.462Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T11:44:43.582Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e9a8ad} at example.wlk:8 exhausted all cases without a match [Parameter]{e9a8ad} at example.wlk:8 exhausted all cases without a match","stack":"Error: [Parameter]{e9a8ad} at example.wlk:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:43.606Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:43.706Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:43.763Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:53.177Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:53.232Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T11:44:53.339Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:53.396Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:53.539Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T11:44:55.694Z"} +{"level":"error","message":"✘ Completions for node failed: Error: testExample.\"group of tests for pepita\".f [Field]{c9d40c} at testExample.wtest:5 exhausted all cases without a match testExample.\"group of tests for pepita\".f [Field]{c9d40c} at testExample.wtest:5 exhausted all cases without a match","stack":"Error: testExample.\"group of tests for pepita\".f [Field]{c9d40c} at testExample.wtest:5 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:55.713Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T11:44:55.841Z"} +{"level":"error","message":"✘ Completions for node failed: Error: testExample.\"group of tests for pepita\".fel [Field]{2083a1} at testExample.wtest:5 exhausted all cases without a match testExample.\"group of tests for pepita\".fel [Field]{2083a1} at testExample.wtest:5 exhausted all cases without a match","stack":"Error: testExample.\"group of tests for pepita\".fel [Field]{2083a1} at testExample.wtest:5 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:44:56.004Z"} +{"level":"error","message":"✘ Completions for node failed: Error: testExample.\"group of tests for pepita\".feliz [Field]{a76e95} at testExample.wtest:5 exhausted all cases without a match testExample.\"group of tests for pepita\".feliz [Field]{a76e95} at testExample.wtest:5 exhausted all cases without a match","stack":"Error: testExample.\"group of tests for pepita\".feliz [Field]{a76e95} at testExample.wtest:5 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:44:58.763Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:58.850Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:44:58.907Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:45:00.013Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":116,"timestamp":"2024-11-22T11:45:01.658Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T11:45:01.920Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T11:45:02.023Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:45:06.859Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T11:45:19.796Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:19.797Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:19.948Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:45:20.116Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:20.493Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:20.631Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:20.776Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T11:45:24.669Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:45:26.058Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e8ade9} at testExample.wtest:8 exhausted all cases without a match [Send]{e8ade9} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{e8ade9} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:31.703Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c264b2} at testExample.wtest:8 exhausted all cases without a match [Send]{c264b2} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{c264b2} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:31.703Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:31.804Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:31.884Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c3b45f} at testExample.wtest:8 exhausted all cases without a match [Send]{c3b45f} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{c3b45f} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:32.530Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fda997} at testExample.wtest:8 exhausted all cases without a match [Send]{fda997} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{fda997} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:32.531Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{2ece1e} at testExample.wtest:8 exhausted all cases without a match [Send]{2ece1e} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{2ece1e} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:32.899Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{2d43c7} at testExample.wtest:8 exhausted all cases without a match [Send]{2d43c7} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{2d43c7} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:32.899Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{08b9c6} at testExample.wtest:8 exhausted all cases without a match [Send]{08b9c6} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{08b9c6} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:33.057Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3a5e92} at testExample.wtest:8 exhausted all cases without a match [Send]{3a5e92} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{3a5e92} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:33.057Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4dfce0} at testExample.wtest:8 exhausted all cases without a match [Send]{4dfce0} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{4dfce0} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:33.497Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f7c95b} at testExample.wtest:8 exhausted all cases without a match [Send]{f7c95b} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{f7c95b} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:33.497Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T11:45:33.602Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{07bf4c} at testExample.wtest:8 exhausted all cases without a match [Send]{07bf4c} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{07bf4c} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:33.679Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4f77ed} at testExample.wtest:8 exhausted all cases without a match [Send]{4f77ed} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{4f77ed} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:33.679Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a14f22} at testExample.wtest:8 exhausted all cases without a match [Send]{a14f22} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{a14f22} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:33.846Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{56338f} at testExample.wtest:8 exhausted all cases without a match [Send]{56338f} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{56338f} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:33.846Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{cd43f0} at testExample.wtest:8 exhausted all cases without a match [Send]{cd43f0} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{cd43f0} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:34.008Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3fb375} at testExample.wtest:8 exhausted all cases without a match [Send]{3fb375} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{3fb375} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:34.008Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5c6c48} at testExample.wtest:8 exhausted all cases without a match [Send]{5c6c48} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{5c6c48} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:34.310Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{afca0e} at testExample.wtest:8 exhausted all cases without a match [Send]{afca0e} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{afca0e} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T11:45:34.310Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{70f716} at testExample.wtest:8 exhausted all cases without a match [Send]{70f716} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{70f716} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:45:36.267Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{dffeb6} at testExample.wtest:8 exhausted all cases without a match [Send]{dffeb6} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{dffeb6} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:45:36.267Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:36.463Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:36.521Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T11:45:36.829Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:36.829Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:36.892Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:38.671Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T11:45:42.930Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T11:45:45.486Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{cce93b} at testExample.wtest:9 exhausted all cases without a match [Send]{cce93b} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Send]{cce93b} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:49.000Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:49.095Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:49.171Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:45:49.325Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{95f327} at testExample.wtest:9 exhausted all cases without a match [Send]{95f327} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Send]{95f327} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:45:50.157Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T11:45:57.252Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T11:45:57.733Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:45:58.727Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":134,"timestamp":"2024-11-22T11:46:00.058Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:46:00.248Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{760b7d} at testExample.wtest:9 exhausted all cases without a match [Send]{760b7d} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Send]{760b7d} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:46:00.573Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:46:01.124Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:46:01.178Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{aa067b} at testExample.wtest:9 exhausted all cases without a match [Send]{aa067b} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Send]{aa067b} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:46:01.331Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T11:46:01.850Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":136,"timestamp":"2024-11-22T11:46:02.468Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{da7485} at testExample.wtest:9 exhausted all cases without a match [Send]{da7485} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Send]{da7485} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:46:02.710Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:46:26.342Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:46:26.351Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n 16 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n 16 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:46:26.486Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n 16 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n 16 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:46:26.641Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n 16 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n \", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | class Emocion{\n 13 | const nombre\n> 14 | }}\n | ^\n 15 | \n 16 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:46:26.906Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T11:46:29.400Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T11:47:03.579Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:47:03.683Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:47:03.970Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:47:04.540Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:47:05.518Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:47:05.877Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T11:47:06.702Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T11:47:06.833Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T11:47:06.937Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T11:47:07.059Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:47:07.537Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:47:07.731Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T11:47:57.880Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":147,"timestamp":"2024-11-22T11:47:58.030Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:47:58.234Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:48:01.606Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T11:48:06.602Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:48:07.911Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:48:07.987Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:48:08.141Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.in [Field]{f88989} at example.wlk:15 exhausted all cases without a match example.Emocion.in [Field]{f88989} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.in [Field]{f88989} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:48:08.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.inte [Field]{149fe6} at example.wlk:15 exhausted all cases without a match example.Emocion.inte [Field]{149fe6} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.inte [Field]{149fe6} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:48:09.167Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T11:48:09.514Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intend [Field]{e861b2} at example.wlk:15 exhausted all cases without a match example.Emocion.intend [Field]{e861b2} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intend [Field]{e861b2} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:48:09.581Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.inten [Field]{e3dfff} at example.wlk:15 exhausted all cases without a match example.Emocion.inten [Field]{e3dfff} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.inten [Field]{e3dfff} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:48:09.655Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensi [Field]{b4fc00} at example.wlk:15 exhausted all cases without a match example.Emocion.intensi [Field]{b4fc00} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensi [Field]{b4fc00} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:48:09.994Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:48:10.592Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensida [Field]{bf3a27} at example.wlk:15 exhausted all cases without a match example.Emocion.intensida [Field]{bf3a27} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensida [Field]{bf3a27} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:48:10.673Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T11:48:56.028Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":150,"timestamp":"2024-11-22T11:48:56.180Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T11:48:56.303Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":176,"timestamp":"2024-11-22T11:48:56.579Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":141,"timestamp":"2024-11-22T11:48:56.721Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:48:59.539Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T11:49:00.190Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:00.399Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:00.460Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:00.736Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:00.739Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:00.739Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:00.742Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:01.411Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:01.497Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:01.855Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:02.265Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:02.422Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:02.547Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:03.152Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:03.561Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:03.634Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:03.763Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.027Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.163Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia i\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia i\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.370Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:04.393Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia in\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia in\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.539Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inh\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inh\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.736Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inhe\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inhe\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.809Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inher\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inher\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:04.897Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inheri\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inheri\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:05.159Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inheris\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inheris\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:05.234Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inheri\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inheri\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:05.545Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inherit\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | }\n 17 | \n> 18 | class Furia inherit\n | ^\n 19 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:05.620Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:05.807Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:05.918Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:06.579Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:06.744Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:06.921Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:06.994Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:07.099Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:07.229Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:07.462Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:49:10.101Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:10.102Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:10.459Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:10.548Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.fu [Field]{da9998} at example.wlk:19 exhausted all cases without a match example.Furia.fu [Field]{da9998} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.fu [Field]{da9998} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:10.929Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:49:11.142Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.fur [Field]{1f3ca9} at example.wlk:19 exhausted all cases without a match example.Furia.fur [Field]{1f3ca9} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.fur [Field]{1f3ca9} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:11.225Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:49:11.389Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.furia [Field]{51b5de} at example.wlk:19 exhausted all cases without a match example.Furia.furia [Field]{51b5de} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.furia [Field]{51b5de} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:11.548Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.furi [Field]{abd49f} at example.wlk:19 exhausted all cases without a match example.Furia.furi [Field]{abd49f} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.furi [Field]{abd49f} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:11.618Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":166,"timestamp":"2024-11-22T11:49:12.305Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:12.380Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:12.383Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:49:12.484Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":124,"timestamp":"2024-11-22T11:49:13.020Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T11:49:13.136Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:49:13.625Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:49:14.233Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:17.802Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:17.860Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:18.050Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:18.103Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:18.432Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:49:19.194Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:19.195Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:19.385Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:19.468Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:19.726Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:49:19.833Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.pa [Field]{fea030} at example.wlk:19 exhausted all cases without a match example.Furia.pa [Field]{fea030} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.pa [Field]{fea030} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:19.914Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:49:20.182Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.pala [Field]{4ca230} at example.wlk:19 exhausted all cases without a match example.Furia.pala [Field]{4ca230} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.pala [Field]{4ca230} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:20.262Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:49:20.364Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.palab [Field]{9b301b} at example.wlk:19 exhausted all cases without a match example.Furia.palab [Field]{9b301b} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.palab [Field]{9b301b} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:20.436Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:49:20.701Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:22.029Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:49:22.131Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | var\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:22.133Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:23.295Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:23.454Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:23.505Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | const\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | const\n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:23.689Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:23.690Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | const \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 18 | class Furia inherits Emocion{\n 19 | const \n> 20 | }\n | ^\n 21 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:49:23.693Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:23.693Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:23.990Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.pa [Field]{86ffb3} at example.wlk:19 exhausted all cases without a match example.Furia.pa [Field]{86ffb3} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.pa [Field]{86ffb3} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:24.146Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.pab [Field]{69bb04} at example.wlk:19 exhausted all cases without a match example.Furia.pab [Field]{69bb04} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.pab [Field]{69bb04} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:24.361Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.pal [Field]{8abdb7} at example.wlk:19 exhausted all cases without a match example.Furia.pal [Field]{8abdb7} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.pal [Field]{8abdb7} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:25.166Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.palab [Field]{da2cc9} at example.wlk:19 exhausted all cases without a match example.Furia.palab [Field]{da2cc9} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.palab [Field]{da2cc9} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:25.530Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.palabr [Field]{fc8899} at example.wlk:19 exhausted all cases without a match example.Furia.palabr [Field]{fc8899} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.palabr [Field]{fc8899} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:25.688Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T11:49:25.948Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.palabrot [Field]{907d8c} at example.wlk:19 exhausted all cases without a match example.Furia.palabrot [Field]{907d8c} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.palabrot [Field]{907d8c} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:26.018Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Furia.palabrotas [Field]{556b33} at example.wlk:19 exhausted all cases without a match example.Furia.palabrotas [Field]{556b33} at example.wlk:19 exhausted all cases without a match","stack":"Error: example.Furia.palabrotas [Field]{556b33} at example.wlk:19 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:49:26.327Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:49:26.595Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T11:49:31.999Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T11:49:52.357Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":167,"timestamp":"2024-11-22T11:49:52.526Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T11:49:53.220Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":152,"timestamp":"2024-11-22T11:49:53.375Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T11:49:53.692Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":203,"timestamp":"2024-11-22T11:49:53.932Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:49:53.933Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T11:49:54.045Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T11:49:54.177Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":148,"timestamp":"2024-11-22T11:49:54.331Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T11:49:54.469Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":172,"timestamp":"2024-11-22T11:49:54.641Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:49:54.875Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:49:55.231Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T11:49:55.351Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:49:55.544Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T11:49:55.677Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T11:49:55.894Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T11:49:56.119Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":161,"timestamp":"2024-11-22T11:49:56.318Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:49:59.394Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":136,"timestamp":"2024-11-22T11:50:00.178Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:50:02.042Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T11:50:06.275Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":125,"timestamp":"2024-11-22T11:50:06.401Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T11:50:06.840Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:50:11.779Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T11:50:11.996Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:50:12.264Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:12.359Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:13.146Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:50:13.248Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:13.322Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:13.383Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:50:15.576Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":156,"timestamp":"2024-11-22T11:50:17.000Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T11:50:17.131Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T11:50:17.376Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:50:17.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:19.652Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:19.707Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:19.920Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:21.944Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:22.018Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:50:22.126Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:50:22.379Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T11:50:22.676Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T11:50:23.893Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:50:26.192Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:50:26.351Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:50:26.978Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:50:27.180Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T11:50:27.400Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:50:27.850Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:50:28.348Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:50:29.040Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T11:50:35.562Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T11:50:36.729Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:50:36.831Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:50:37.024Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:50:37.025Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":185,"timestamp":"2024-11-22T11:51:01.023Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":201,"timestamp":"2024-11-22T11:51:01.228Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":157,"timestamp":"2024-11-22T11:51:01.467Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":238,"timestamp":"2024-11-22T11:51:01.744Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T11:51:01.856Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":180,"timestamp":"2024-11-22T11:51:02.038Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":155,"timestamp":"2024-11-22T11:51:02.237Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T11:51:02.390Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":137,"timestamp":"2024-11-22T11:51:02.527Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:51:02.962Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:51:03.124Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:51:03.456Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:51:04.403Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:51:10.445Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:51:10.602Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"6f4fedf7-c0fa-4bbc-b89e-29d189b574d0","members":[{"id":"bc223f90-0517-4328-a3b5-3e9c2ecefa71","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"cd748293-0487-4201-8ed4-8ba9b1090daa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"d74ca4dd-0757-46d7-9d0f-8ccad0ddd134","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":1,"line":25,"offset":351},"start":{"column":3,"line":21,"offset":288}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":25,"offset":352},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"80ef0e7c-4f85-40d3-927e-752ac0df6dc9","metadata":[],"reference":{"id":"368815f6-165f-40c1-a73d-024a7662aea2","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:51:40.753Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:51:46.696Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T11:51:46.896Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:51:47.186Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:51:47.377Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:51:47.585Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T11:51:47.925Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":117,"timestamp":"2024-11-22T11:51:48.371Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:51:48.560Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":151,"timestamp":"2024-11-22T11:51:49.891Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:51:51.932Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"1776fa6a-dd69-4f22-bfc8-895b53489420","members":[{"id":"30005efd-c354-45c0-a9c3-64bedbb17b4c","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"8eb9aa9a-4d7d-401a-afc2-cb79c71c6c7f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"7d6c08c9-5361-497f-8ec6-7933d0216c85","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":1,"line":25,"offset":370},"start":{"column":3,"line":21,"offset":288}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":25,"offset":371},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"7f6b3039-780f-44a7-bdcd-6a7a5bfe7d2d","metadata":[],"reference":{"id":"87b1edd5-1e27-4d49-97b6-7e39b9c85363","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:51:53.819Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:51:59.411Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:51:59.518Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:51:59.574Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T11:51:59.684Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:51:59.684Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:51:59.792Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:51:59.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:00.016Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:00.179Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T11:52:05.565Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:52:06.906Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T11:52:07.255Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:52:07.599Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:12.819Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:12.892Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:13.051Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:52:13.159Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:13.259Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:13.407Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:13.490Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:52:13.599Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a6e7ce8e-e3fb-4b40-a608-a8dc627d1957","members":[{"id":"a7152df2-5d0d-41c4-aace-bf6bbae5aac0","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"1756798b-d075-416a-80ff-324e0de2c999","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"e324ffb0-cbd9-46fe-b816-01588a62b1c8","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"eb1c6be8-09ad-4d4a-a48a-e06e7fd41621","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"args":[],"id":"51d1c36f-4ce9-4905-9c2c-4b04c155b321","message":"intensidadElevada","metadata":[],"receiver":{"id":"2780dc98-7411-4902-939e-c3c5783a07cb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":22,"offset":348},"start":{"column":31,"line":22,"offset":344}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":31,"line":22,"offset":344}}}],"id":"b6c9a25b-b419-4c4d-81d1-49c35790c17f","message":"&&","metadata":[],"receiver":{"args":[],"id":"56dc9135-ff96-4f4c-bc3f-c6f3b5290b9f","message":"tienePalabrota7","metadata":[],"receiver":{"id":"5108b657-f5f6-4faa-b301-ee27cda7b200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":22,"offset":322},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":22,"offset":340},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":5,"line":22,"offset":318}}}],"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":26,"line":21,"offset":311}}},"id":"c2512d38-c6c5-4e14-96ef-d637d2ea7ec4","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":3,"line":21,"offset":288}}},{"id":"6dd76f07-1ba5-449a-86b1-54e88e558377","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":25,"offset":403},"start":{"column":3,"line":25,"offset":379}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":29,"line":25,"offset":405},"start":{"column":28,"line":25,"offset":404}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":27,"offset":410},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"48e53fa6-3a35-49df-a312-a9340afefcf5","metadata":[],"reference":{"id":"19094978-0913-4e71-af0d-a9b44e562445","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:52:14.924Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":152,"timestamp":"2024-11-22T11:52:15.079Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":154,"timestamp":"2024-11-22T11:52:15.235Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T11:52:15.342Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{aeea00} at example.wlk:-- exhausted all cases without a match [Return]{aeea00} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{aeea00} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:52:16.119Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:16.265Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2b26af} at example.wlk:-- exhausted all cases without a match [Return]{2b26af} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2b26af} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:52:16.439Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":130,"timestamp":"2024-11-22T11:52:21.336Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:52:21.843Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:24.285Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:52:24.673Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":251,"timestamp":"2024-11-22T11:52:27.188Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:27.305Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:27.417Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:27.641Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:27.829Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f8f893} at example.wlk:25 exhausted all cases without a match [Send]{f8f893} at example.wlk:25 exhausted all cases without a match","stack":"Error: [Send]{f8f893} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:52:29.739Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{0a5001} at example.wlk:-- exhausted all cases without a match [Return]{0a5001} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{0a5001} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:52:29.739Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:52:29.849Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:29.849Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:52:31.897Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T11:52:33.569Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:33.569Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:33.820Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:37.523Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:52:37.626Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:37.706Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:38.087Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:52:39.120Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"2eec019a-7567-483e-a6bf-3fd1afc27a80","members":[{"id":"b46ffef1-8c12-4b0d-86eb-56217fa93b5e","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"2f7babbc-9602-4ea1-a4ab-47be9ac03998","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"121cbb40-59c7-43ea-90db-69b81b11aea7","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"6a5935cc-2655-47b9-b218-5c11f68d0c8b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"args":[],"id":"01376352-a756-49c3-81cc-bf2c3607f770","message":"intensidadElevada","metadata":[],"receiver":{"id":"b5c24197-5bd3-4af2-90c1-24ebc482dedd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":22,"offset":348},"start":{"column":31,"line":22,"offset":344}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":31,"line":22,"offset":344}}}],"id":"f688722a-d827-4042-af88-429892a75d00","message":"&&","metadata":[],"receiver":{"args":[],"id":"068d1be3-950d-49b0-8a98-10202951b2f8","message":"tienePalabrota7","metadata":[],"receiver":{"id":"e62d06ce-d18d-4e79-89cd-2b7a43a0fa2e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":22,"offset":322},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":22,"offset":340},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":5,"line":22,"offset":318}}}],"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":26,"line":21,"offset":311}}},"id":"0d6a5dbe-dc58-4e30-bd58-ac91c90356ab","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":3,"line":21,"offset":288}}},{"body":{"id":"b6bd152a-ab9e-49fe-bc93-7b5e30f4a8cd","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"48eed9e3-6ae5-4ebb-a365-6cd3441a9de7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"d0dfc10b-1d59-4937-9846-134b4bdb5133","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}}}],"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}},"id":"253c9753-dd66-495d-94f4-552d24b7b645","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":3,"line":25,"offset":379}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":61,"line":25,"offset":437},"start":{"column":40,"line":25,"offset":416}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":27,"offset":442},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"c122fd76-ca1d-471b-b132-b088bde6b7ad","metadata":[],"reference":{"id":"10fae870-b785-4348-8591-554cd43f1e22","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:52:41.483Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T11:52:41.836Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T11:52:41.970Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":133,"timestamp":"2024-11-22T11:52:42.104Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:44.389Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:44.485Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:52:44.593Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:52:44.671Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:52:44.779Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T11:52:45.128Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | method\n 27 | \n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | method\n 27 | \n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:52:45.141Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | method \n 27 | \n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | method \n 27 | \n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:52:45.281Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T11:52:45.669Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:52:45.777Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:52:46.750Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T11:52:47.019Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T11:52:48.238Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T11:52:48.877Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:52:49.064Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:52:50.417Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"dc6e750d-6cf0-4447-a748-5f78c8d63ea2","members":[{"id":"afd4199d-5969-4a7f-8525-4b72d3b6a2b2","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"3b58109a-bb2d-4449-bddf-5f37187f4415","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"b98220f8-7165-4698-ae2c-b19f5ae5a300","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"e73c19d7-bac2-4090-8342-367375970400","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"args":[],"id":"b0c3ceeb-9b49-4c1b-a050-3ee5a9b5dc12","message":"intensidadElevada","metadata":[],"receiver":{"id":"f28382e0-44be-4eca-81e4-22eab2dcfba5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":22,"offset":348},"start":{"column":31,"line":22,"offset":344}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":31,"line":22,"offset":344}}}],"id":"ab81cee5-d899-4987-8106-f50225657d22","message":"&&","metadata":[],"receiver":{"args":[],"id":"5ce709e3-920a-4ce2-8099-78b81ec64370","message":"tienePalabrota7","metadata":[],"receiver":{"id":"82a04b8d-335f-4e3f-b427-bc8cf4f94753","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":22,"offset":322},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":22,"offset":340},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":5,"line":22,"offset":318}}}],"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":26,"line":21,"offset":311}}},"id":"aa9f7135-d0c9-4b75-ac2e-1eaa244d1b0c","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":3,"line":21,"offset":288}}},{"body":{"id":"a28fd0e8-fbd0-4e92-850c-8f551583dd71","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"30ac1a56-f8c4-4a1f-87c3-e6f0f132fdae","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"e9363885-2f59-4d90-9153-915114d4318b","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}}}],"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}},"id":"17f5e129-a653-4de2-bc64-5cde096462e9","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":3,"line":25,"offset":379}}},{"id":"5b065cb8-2787-4de5-9c23-162210dd8349","isOverride":false,"metadata":[],"name":"esPalabra7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":26,"offset":462},"start":{"column":3,"line":26,"offset":443}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":63,"line":25,"offset":439},"start":{"column":40,"line":25,"offset":416}}},{"code":"malformedMember","sourceMap":{"end":{"column":24,"line":26,"offset":464},"start":{"column":23,"line":26,"offset":463}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":28,"offset":470},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"e3cf2e92-9b7c-4dcc-91ff-c3ffe034c624","metadata":[],"reference":{"id":"b5664cad-6b15-4175-8a41-7b76641a5c78","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:53:06.810Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T11:53:08.449Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{ba202f} at example.wlk:26 exhausted all cases without a match [Parameter]{ba202f} at example.wlk:26 exhausted all cases without a match","stack":"Error: [Parameter]{ba202f} at example.wlk:26 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:53:16.650Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":124,"timestamp":"2024-11-22T11:53:16.778Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:16.861Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:16.938Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T11:53:17.059Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:17.130Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:53:17.237Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:17.296Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:17.454Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:17.606Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:53:17.709Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:20.164Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3e98d52b-52eb-4b07-b62e-f6c2931abb7a","members":[{"id":"b5e0d945-4e61-485e-b6ec-df5c79f6c9be","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"d3eb9f2b-2be4-4c4b-9909-6ce5b6a180e0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"0a5c739c-89e0-4a78-b876-ff5b3ef33592","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"c2193296-1432-453e-9c11-b25c631b3391","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"args":[],"id":"d56a19e8-8a8c-4283-ac93-fe4c404b73cc","message":"intensidadElevada","metadata":[],"receiver":{"id":"6b9b5764-7e70-480e-aa12-860c3ead2f65","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":22,"offset":348},"start":{"column":31,"line":22,"offset":344}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":31,"line":22,"offset":344}}}],"id":"643b943f-4603-4b89-8c4d-9c2bb4f7144b","message":"&&","metadata":[],"receiver":{"args":[],"id":"84c5a0f3-248a-44dd-bf18-4f1b041311a8","message":"tienePalabrota7","metadata":[],"receiver":{"id":"417bc192-8934-47e0-9271-6660f03cc8bf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":22,"offset":322},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":22,"offset":340},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":5,"line":22,"offset":318}}}],"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":26,"line":21,"offset":311}}},"id":"e57f7a8d-a12f-47bc-8f34-c4f94096e961","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":3,"line":21,"offset":288}}},{"body":{"id":"41f85143-f6d7-4435-a9a2-37ecdc42302d","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ae44054c-ecd4-429c-aae9-5cd454a9962a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ac85ab01-9fcc-4d3a-8a34-4f8b06b342d9","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}}}],"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}},"id":"6155567c-a23c-42e3-9d7d-58b61681f85c","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":3,"line":25,"offset":379}}},{"id":"fdbcc7db-c5a8-4579-be75-10cdc1274e81","isOverride":false,"metadata":[],"name":"esPalabra7","parameters":[{"id":"f434627d-7034-4591-b40d-88ab51839319","isVarArg":false,"metadata":[],"name":"palabra","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":26,"offset":475},"start":{"column":21,"line":26,"offset":468}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":26,"offset":476},"start":{"column":3,"line":26,"offset":450}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":70,"line":25,"offset":446},"start":{"column":40,"line":25,"offset":416}}},{"code":"malformedMember","sourceMap":{"end":{"column":31,"line":26,"offset":478},"start":{"column":30,"line":26,"offset":477}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":27,"offset":482},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"13d1bca3-9d79-4120-a58e-006826574e8f","metadata":[],"reference":{"id":"25cec785-9b4b-42ac-88bd-527bb3ba5b71","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:53:26.338Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:53:29.469Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:53:33.814Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:33.814Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:53:40.283Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":160,"timestamp":"2024-11-22T11:53:41.008Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:53:41.773Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:53:41.877Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:53:42.695Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":124,"timestamp":"2024-11-22T11:53:43.136Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:43.753Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:44.375Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:44.556Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:44.611Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:53:44.860Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:53:48.903Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T11:53:49.260Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:53:51.813Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":148,"timestamp":"2024-11-22T11:53:53.057Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":138,"timestamp":"2024-11-22T11:53:58.094Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T11:53:58.821Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', 'const', 'method', 'override', 'var', '{', '}', any character/byte, comment, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', 'const', 'method', 'override', 'var', '{', '}', any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:54:02.784Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:54:06.077Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:14.410Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"dd60a927-5efd-4b50-938e-dac245381610","members":[{"id":"59f0d491-d8d4-430a-9f76-a6c29268d8a4","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":3,"line":19,"offset":261}},"value":{"id":"71645043-4e5a-4277-9510-64ddf395ec1d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":19,"offset":282},"start":{"column":22,"line":19,"offset":280}},"value":[{"id":"e464b0ca-425b-4dce-b3fb-9716be1466c8","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"2cdeab72-24d2-4cd7-9430-76cfa28dd2a5","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"args":[],"id":"1e78b4ed-c18d-4234-8a3e-daac0d79a1ba","message":"intensidadElevada","metadata":[],"receiver":{"id":"c18f9620-2205-40b8-a2ed-f1a2ae075fc4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":22,"offset":348},"start":{"column":31,"line":22,"offset":344}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":31,"line":22,"offset":344}}}],"id":"74243ca3-30c3-4a95-9d4a-589ce46a5561","message":"&&","metadata":[],"receiver":{"args":[],"id":"a446da33-3c2a-42f6-a947-cd935664b1b8","message":"tienePalabrota7","metadata":[],"receiver":{"id":"5efeae31-9b0c-492b-9337-d5bdcf67f561","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":22,"offset":322},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":22,"offset":340},"start":{"column":5,"line":22,"offset":318}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":22,"offset":368},"start":{"column":5,"line":22,"offset":318}}}],"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":26,"line":21,"offset":311}}},"id":"a100c5e3-fb81-4ece-ac56-de54c1ad68c7","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":23,"offset":373},"start":{"column":3,"line":21,"offset":288}}},{"body":{"id":"d75da913-08f6-48c3-96be-766eb6a2002f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b43e6f61-1991-404c-8163-a17b8d307549","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"54f88dd0-6e54-46fb-bb7a-b10a55a6638d","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}}}],"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":30,"line":25,"offset":406}}},"id":"e11989c3-42b2-48d4-8453-5e32ca02897b","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":25,"offset":416},"start":{"column":3,"line":25,"offset":379}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":62,"line":25,"offset":438},"start":{"column":40,"line":25,"offset":416}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":441},"start":{"column":1,"line":18,"offset":228}},"supertypes":[{"args":[],"id":"b598d8a4-6120-42be-b5c9-a59331ba884c","metadata":[],"reference":{"id":"8c8cb785-4377-4265-8dc3-02cb8e55e0bc","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":18,"offset":256},"start":{"column":22,"line":18,"offset":249}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:54:28.963Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:54:32.295Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:54:34.878Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:34.879Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{560d70} at example.wlk:-- exhausted all cases without a match [Return]{560d70} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{560d70} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:54:36.176Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":117,"timestamp":"2024-11-22T11:54:39.397Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{4708c3} at example.wlk:-- exhausted all cases without a match [Return]{4708c3} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{4708c3} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:54:40.434Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:40.530Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T11:54:40.951Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{229979} at example.wlk:-- exhausted all cases without a match [Return]{229979} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{229979} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:54:41.847Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T11:54:41.967Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:41.967Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":123,"timestamp":"2024-11-22T11:54:42.218Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:42.218Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:42.293Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:42.361Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:54:42.474Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:42.531Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:54:42.633Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:42.785Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:54:42.888Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:54:44.964Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:54:57.622Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:57.622Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T11:54:57.742Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:57.814Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:57.892Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:54:57.994Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:58.047Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:54:58.155Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method\n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method\n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:54:58.159Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:58.160Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method \n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method \n> 28 | }\n | ^\n 29 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:54:58.260Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:54:58.260Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:55:00.062Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:55:01.675Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T11:55:01.976Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T11:55:02.174Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:02.450Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T11:55:04.276Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{0590f5} at example.wlk:-- exhausted all cases without a match [Return]{0590f5} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{0590f5} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:04.796Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:04.887Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T11:55:05.033Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:05.033Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{11f0a7} at example.wlk:-- exhausted all cases without a match [Return]{11f0a7} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{11f0a7} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:05.114Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:55:05.367Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:55:16.371Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:55:16.544Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T11:55:16.831Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":148,"timestamp":"2024-11-22T11:55:17.072Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:55:17.416Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:17.746Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:17.798Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:17.856Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:17.957Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:55:17.964Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:17.964Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:55:18.059Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:18.060Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:18.669Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eit [Variable]{f2bdf8} at example.wlk:31 exhausted all cases without a match example.eit [Variable]{f2bdf8} at example.wlk:31 exhausted all cases without a match","stack":"Error: example.eit [Variable]{f2bdf8} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:55:18.993Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eita [Variable]{cb68c4} at example.wlk:31 exhausted all cases without a match example.eita [Variable]{cb68c4} at example.wlk:31 exhausted all cases without a match","stack":"Error: example.eita [Variable]{cb68c4} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:55:19.173Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:20.121Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{2d8317} at example.wlk:31 exhausted all cases without a match example.eitan [Variable]{2d8317} at example.wlk:31 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{2d8317} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:20.209Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:55:20.322Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:20.322Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:20.417Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{9717eb} at example.wlk:31 exhausted all cases without a match example.eitan [Variable]{9717eb} at example.wlk:31 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{9717eb} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:21.082Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T11:55:21.787Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:23.830Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:29.198Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:29.382Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:55:31.035Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:55:31.866Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:55:32.096Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:32.685Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T11:55:32.986Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":144,"timestamp":"2024-11-22T11:55:33.130Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T11:55:33.315Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{55d5f5} at example.wlk:31 exhausted all cases without a match [Literal]{55d5f5} at example.wlk:31 exhausted all cases without a match","stack":"Error: [Literal]{55d5f5} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:34.486Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{9fc001} at example.wlk:31 exhausted all cases without a match [NamedArgument]{9fc001} at example.wlk:31 exhausted all cases without a match","stack":"Error: [NamedArgument]{9fc001} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:55:34.486Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:34.581Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:34.637Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:34.705Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:34.950Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{6457fc} at example.wlk:31 exhausted all cases without a match [Literal]{6457fc} at example.wlk:31 exhausted all cases without a match","stack":"Error: [Literal]{6457fc} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:35.170Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{b50334} at example.wlk:31 exhausted all cases without a match [NamedArgument]{b50334} at example.wlk:31 exhausted all cases without a match","stack":"Error: [NamedArgument]{b50334} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:55:35.170Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{763dc8} at example.wlk:31 exhausted all cases without a match [Literal]{763dc8} at example.wlk:31 exhausted all cases without a match","stack":"Error: [Literal]{763dc8} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:36.287Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{5ec134} at example.wlk:31 exhausted all cases without a match [NamedArgument]{5ec134} at example.wlk:31 exhausted all cases without a match","stack":"Error: [NamedArgument]{5ec134} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:55:36.287Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:36.984Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{72f198} at example.wlk:31 exhausted all cases without a match [Literal]{72f198} at example.wlk:31 exhausted all cases without a match","stack":"Error: [Literal]{72f198} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:37.114Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{087874} at example.wlk:31 exhausted all cases without a match [NamedArgument]{087874} at example.wlk:31 exhausted all cases without a match","stack":"Error: [NamedArgument]{087874} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:55:37.114Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:37.207Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{3a02fc} at example.wlk:31 exhausted all cases without a match [Literal]{3a02fc} at example.wlk:31 exhausted all cases without a match","stack":"Error: [Literal]{3a02fc} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:37.307Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{6f96ce} at example.wlk:31 exhausted all cases without a match [NamedArgument]{6f96ce} at example.wlk:31 exhausted all cases without a match","stack":"Error: [NamedArgument]{6f96ce} at example.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T11:55:37.308Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:55:39.096Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:39.097Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":148,"timestamp":"2024-11-22T11:55:39.245Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:39.246Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T11:55:39.359Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:39.360Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":159,"timestamp":"2024-11-22T11:55:39.519Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:39.621Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:39.785Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:39.846Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:39.948Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:40.019Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:40.259Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eit [Variable]{6b7a1e} at example.wlk:30 exhausted all cases without a match example.eit [Variable]{6b7a1e} at example.wlk:30 exhausted all cases without a match","stack":"Error: example.eit [Variable]{6b7a1e} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:55:40.334Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:55:40.994Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.f [Variable]{1d5ec0} at example.wlk:30 exhausted all cases without a match example.f [Variable]{1d5ec0} at example.wlk:30 exhausted all cases without a match","stack":"Error: example.f [Variable]{1d5ec0} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:55:41.071Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.fura [Variable]{21ce52} at example.wlk:30 exhausted all cases without a match example.fura [Variable]{21ce52} at example.wlk:30 exhausted all cases without a match","stack":"Error: example.fura [Variable]{21ce52} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:55:41.775Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.fura1 [Variable]{09a3ad} at example.wlk:30 exhausted all cases without a match example.fura1 [Variable]{09a3ad} at example.wlk:30 exhausted all cases without a match","stack":"Error: example.fura1 [Variable]{09a3ad} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T11:55:41.993Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:42.918Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.fura1 [Variable]{308ece} at example.wlk:30 exhausted all cases without a match example.fura1 [Variable]{308ece} at example.wlk:30 exhausted all cases without a match","stack":"Error: example.fura1 [Variable]{308ece} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:55:43.186Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:43.286Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":184,"timestamp":"2024-11-22T11:55:43.470Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:55:43.477Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T11:55:44.119Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:55:48.208Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":127,"timestamp":"2024-11-22T11:55:48.911Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:55:49.126Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T11:55:51.034Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:55:51.298Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:55:51.950Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:55:52.134Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:55:55.069Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:55:55.236Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:56.715Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:55:56.917Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T11:55:57.035Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T11:55:57.141Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:57.781Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T11:55:57.939Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":170,"timestamp":"2024-11-22T11:55:58.112Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T11:55:58.243Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T11:55:59.538Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":147,"timestamp":"2024-11-22T11:55:59.689Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T11:56:21.869Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T11:56:21.992Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:56:21.992Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:56:22.053Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T11:56:22.161Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T11:56:22.262Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:56:22.264Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:56:22.339Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:56:22.492Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":127,"timestamp":"2024-11-22T11:56:22.619Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:56:23.442Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T11:57:20.513Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T11:57:22.529Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T11:57:23.419Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T11:57:25.715Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T11:57:26.590Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:26.592Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:26.675Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":128,"timestamp":"2024-11-22T11:57:26.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:26.869Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T11:57:26.986Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T11:57:27.164Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:27.310Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":121,"timestamp":"2024-11-22T11:57:27.432Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T11:57:28.054Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T11:57:28.220Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:28.643Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:28.782Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T11:57:29.221Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T11:57:29.537Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T11:57:30.061Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{918659} at testExample.wtest:8 exhausted all cases without a match [Send]{918659} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{918659} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:30.492Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:30.586Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{83c4d0} at testExample.wtest:8 exhausted all cases without a match [Send]{83c4d0} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{83c4d0} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:30.810Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{984a70} at testExample.wtest:8 exhausted all cases without a match [Send]{984a70} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{984a70} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:30.979Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d1dbda} at testExample.wtest:8 exhausted all cases without a match [Send]{d1dbda} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{d1dbda} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:31.393Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5b76f3} at testExample.wtest:8 exhausted all cases without a match [Send]{5b76f3} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{5b76f3} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:32.430Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9d7607} at testExample.wtest:8 exhausted all cases without a match [Send]{9d7607} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{9d7607} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:32.629Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fff924} at testExample.wtest:8 exhausted all cases without a match [Send]{fff924} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{fff924} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:32.842Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8bc8ad} at testExample.wtest:8 exhausted all cases without a match [Send]{8bc8ad} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{8bc8ad} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:33.080Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":134,"timestamp":"2024-11-22T11:57:33.307Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ad035d} at testExample.wtest:8 exhausted all cases without a match [Send]{ad035d} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{ad035d} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:33.379Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a10201} at testExample.wtest:8 exhausted all cases without a match [Send]{a10201} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{a10201} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T11:57:33.754Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T11:57:34.021Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:35.488Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:35.545Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T11:57:35.649Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:35.698Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T11:57:35.804Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T11:57:36.203Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T11:57:36.947Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:38.550Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T11:57:38.947Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":142,"timestamp":"2024-11-22T11:57:39.245Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T11:57:39.744Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:57:39.830Z"} +{"failures":[{"error":["wollok.lang.EvaluationError wrapping TypeScript Error: Could not resolve reference to value or its a reference to void"," at testExample.\"group of tests for pepita\".\"Yo soy adolecente\" [testExample.wtest:7]"],"test":"testExample.\"group of tests for pepita\".\"Yo soy adolecente\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":303,"timestamp":"2024-11-22T11:57:43.211Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T11:58:12.957Z"} +{"failures":[{"error":["wollok.lang.EvaluationError wrapping TypeScript Error: Could not resolve reference to value or its a reference to void"," at testExample.\"group of tests for pepita\".\"Yo soy adolecente\" [testExample.wtest:7]"],"test":"testExample.\"group of tests for pepita\".\"Yo soy adolecente\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":377,"timestamp":"2024-11-22T11:58:18.968Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T11:58:36.276Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T11:58:36.415Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:58:36.415Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 19 | const palabrotas = []\n 20 | \n> 21 | method (){\n | ^\n 22 | self.tienePalabrota7() && self.intensidadElevada()\n 23 | }\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 19 | const palabrotas = []\n 20 | \n> 21 | method (){\n | ^\n 22 | self.tienePalabrota7() && self.intensidadElevada()\n 23 | }\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T11:58:37.144Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T11:58:40.389Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T11:58:40.695Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T11:58:40.802Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T11:59:14.450Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T11:59:14.554Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T11:59:14.765Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T11:59:16.586Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T11:59:16.687Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-11-22T11:59:16.888Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T12:00:05.248Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":139,"timestamp":"2024-11-22T12:00:05.462Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:00:05.566Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:00:10.527Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:00:10.634Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:00:10.834Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:00:17.242Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":128,"timestamp":"2024-11-22T12:00:17.626Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":125,"timestamp":"2024-11-22T12:00:17.817Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:00:19.519Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:00:20.567Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T12:00:21.039Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T12:00:22.590Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:00:24.900Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T12:00:30.474Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T12:00:34.370Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:00:34.711Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T12:00:34.892Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:00:35.415Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:00:35.604Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9b11a1} at testExample.wtest:8 exhausted all cases without a match [Send]{9b11a1} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{9b11a1} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:00:37.041Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a25d02} at testExample.wtest:8 exhausted all cases without a match [Send]{a25d02} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{a25d02} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:00:37.041Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:00:37.139Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:00:37.204Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:00:37.274Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e5e040} at testExample.wtest:8 exhausted all cases without a match [Send]{e5e040} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{e5e040} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:00:37.578Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{efd827} at testExample.wtest:8 exhausted all cases without a match [Send]{efd827} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{efd827} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:00:37.578Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T12:00:37.753Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b8b826} at testExample.wtest:8 exhausted all cases without a match [Send]{b8b826} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{b8b826} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:38.943Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c6fe2c} at testExample.wtest:8 exhausted all cases without a match [Send]{c6fe2c} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{c6fe2c} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:38.943Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:00:39.049Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:00:39.050Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{797fc4} at testExample.wtest:8 exhausted all cases without a match [Send]{797fc4} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{797fc4} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:39.165Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ced109} at testExample.wtest:8 exhausted all cases without a match [Send]{ced109} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{ced109} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:39.165Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{dcdd17} at testExample.wtest:8 exhausted all cases without a match [Send]{dcdd17} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{dcdd17} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:39.509Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7987c1} at testExample.wtest:8 exhausted all cases without a match [Send]{7987c1} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{7987c1} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:39.509Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e9bddd} at testExample.wtest:8 exhausted all cases without a match [Send]{e9bddd} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{e9bddd} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:39.856Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8c148e} at testExample.wtest:8 exhausted all cases without a match [Send]{8c148e} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{8c148e} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:39.857Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{969c62} at testExample.wtest:8 exhausted all cases without a match [Send]{969c62} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{969c62} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:40.030Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{42677f} at testExample.wtest:8 exhausted all cases without a match [Send]{42677f} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{42677f} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:40.031Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ecf454} at testExample.wtest:8 exhausted all cases without a match [Send]{ecf454} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{ecf454} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:40.202Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e3921e} at testExample.wtest:8 exhausted all cases without a match [Send]{e3921e} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{e3921e} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:40.203Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{94a7b2} at testExample.wtest:8 exhausted all cases without a match [Send]{94a7b2} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{94a7b2} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:40.397Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{905dd9} at testExample.wtest:8 exhausted all cases without a match [Send]{905dd9} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{905dd9} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:40.397Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{94989b} at testExample.wtest:8 exhausted all cases without a match [Send]{94989b} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{94989b} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:40.689Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5aac10} at testExample.wtest:8 exhausted all cases without a match [Send]{5aac10} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{5aac10} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:40.690Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{96110c} at testExample.wtest:8 exhausted all cases without a match [Send]{96110c} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{96110c} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:40.870Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{14d466} at testExample.wtest:8 exhausted all cases without a match [Send]{14d466} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{14d466} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:40.870Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e2916f} at testExample.wtest:8 exhausted all cases without a match [Send]{e2916f} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{e2916f} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:00:41.099Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3746cd} at testExample.wtest:8 exhausted all cases without a match [Send]{3746cd} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: [Send]{3746cd} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:00:41.099Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":274,"timestamp":"2024-11-22T12:00:45.032Z"} +{"failures":[{"error":["wollok.lang.EvaluationError wrapping TypeScript Error: Could not resolve reference to value or its a reference to void"," at testExample.\"group of tests for pepita\".\"Furia\" [testExample.wtest:10]"],"test":"testExample.\"group of tests for pepita\".\"Furia\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":337,"timestamp":"2024-11-22T12:00:49.615Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:01:00.796Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fe5dd4} at testExample.wtest:11 exhausted all cases without a match [Send]{fe5dd4} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{fe5dd4} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:00.822Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3182ee} at testExample.wtest:11 exhausted all cases without a match [Send]{3182ee} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{3182ee} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:00.822Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T12:01:01.025Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f5e435} at testExample.wtest:11 exhausted all cases without a match [Send]{f5e435} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{f5e435} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:01.217Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8f2417} at testExample.wtest:11 exhausted all cases without a match [Send]{8f2417} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{8f2417} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:01.217Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:01:01.374Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":163,"timestamp":"2024-11-22T12:01:01.538Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:01:01.642Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T12:01:01.758Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{46db43} at testExample.wtest:11 exhausted all cases without a match [Send]{46db43} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{46db43} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:01.883Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7ca05c} at testExample.wtest:11 exhausted all cases without a match [Send]{7ca05c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{7ca05c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:01.883Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":119,"timestamp":"2024-11-22T12:01:02.146Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:02.306Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{348795} at testExample.wtest:11 exhausted all cases without a match [Send]{348795} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{348795} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:02.322Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{2f5e8c} at testExample.wtest:11 exhausted all cases without a match [Send]{2f5e8c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{2f5e8c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:02.322Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c0f0b0} at testExample.wtest:11 exhausted all cases without a match [Send]{c0f0b0} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{c0f0b0} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:02.788Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{dff09d} at testExample.wtest:11 exhausted all cases without a match [Send]{dff09d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{dff09d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:02.788Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:03.132Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b469da} at testExample.wtest:11 exhausted all cases without a match [Send]{b469da} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{b469da} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:03.406Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a00a48} at testExample.wtest:11 exhausted all cases without a match [Send]{a00a48} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{a00a48} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:03.406Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":297,"timestamp":"2024-11-22T12:01:07.263Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{33d838} at testExample.wtest:11 exhausted all cases without a match [Send]{33d838} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{33d838} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:13.088Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e8e272} at testExample.wtest:11 exhausted all cases without a match [Send]{e8e272} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{e8e272} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:13.089Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:13.179Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T12:01:17.017Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e76f58} at testExample.wtest:11 exhausted all cases without a match [Send]{e76f58} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{e76f58} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:17.150Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{1ca21c} at testExample.wtest:11 exhausted all cases without a match [Send]{1ca21c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{1ca21c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:17.151Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:01:17.258Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:17.258Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c42265} at testExample.wtest:11 exhausted all cases without a match [Send]{c42265} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{c42265} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:17.419Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{47933a} at testExample.wtest:11 exhausted all cases without a match [Send]{47933a} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{47933a} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:17.419Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9a34d2} at testExample.wtest:11 exhausted all cases without a match [Send]{9a34d2} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{9a34d2} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:17.619Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{575c59} at testExample.wtest:11 exhausted all cases without a match [Send]{575c59} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{575c59} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:17.619Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{0dc0cd} at testExample.wtest:11 exhausted all cases without a match [Send]{0dc0cd} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{0dc0cd} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:17.951Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b5e558} at testExample.wtest:11 exhausted all cases without a match [Send]{b5e558} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{b5e558} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:17.951Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fd37e5} at testExample.wtest:11 exhausted all cases without a match [Send]{fd37e5} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{fd37e5} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:18.163Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9b6a4f} at testExample.wtest:11 exhausted all cases without a match [Send]{9b6a4f} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{9b6a4f} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:18.163Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T12:01:18.331Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{20cade} at testExample.wtest:11 exhausted all cases without a match [Send]{20cade} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{20cade} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:18.499Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{1a7f2f} at testExample.wtest:11 exhausted all cases without a match [Send]{1a7f2f} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{1a7f2f} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:18.499Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T12:01:18.687Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{965231} at testExample.wtest:11 exhausted all cases without a match [Send]{965231} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{965231} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:18.754Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{efe730} at testExample.wtest:11 exhausted all cases without a match [Send]{efe730} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{efe730} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:18.754Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e67940} at testExample.wtest:11 exhausted all cases without a match [Send]{e67940} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{e67940} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:19.685Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{1773bc} at testExample.wtest:11 exhausted all cases without a match [Send]{1773bc} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{1773bc} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:19.685Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{755443} at testExample.wtest:11 exhausted all cases without a match [Send]{755443} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{755443} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:20.005Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f77be8} at testExample.wtest:11 exhausted all cases without a match [Send]{f77be8} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{f77be8} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:20.006Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e57f5c} at testExample.wtest:11 exhausted all cases without a match [Send]{e57f5c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{e57f5c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:20.318Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b7aeb5} at testExample.wtest:11 exhausted all cases without a match [Send]{b7aeb5} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{b7aeb5} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:20.318Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{0f1df8} at testExample.wtest:11 exhausted all cases without a match [Send]{0f1df8} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{0f1df8} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:20.521Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{0cf4f7} at testExample.wtest:11 exhausted all cases without a match [Send]{0cf4f7} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{0cf4f7} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:20.521Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:20.625Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{1d1432} at testExample.wtest:11 exhausted all cases without a match [Send]{1d1432} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{1d1432} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:20.744Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{16d9dd} at testExample.wtest:11 exhausted all cases without a match [Send]{16d9dd} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{16d9dd} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:20.744Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{60082c} at testExample.wtest:11 exhausted all cases without a match [Send]{60082c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{60082c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:20.940Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{bf0a0d} at testExample.wtest:11 exhausted all cases without a match [Send]{bf0a0d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{bf0a0d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:20.940Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{130c72} at testExample.wtest:11 exhausted all cases without a match [Send]{130c72} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{130c72} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:01:21.106Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f98982} at testExample.wtest:11 exhausted all cases without a match [Send]{f98982} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{f98982} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:01:21.106Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:01:27.066Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":303,"timestamp":"2024-11-22T12:01:36.157Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:40.194Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:40.374Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{746ce7} at testExample.wtest:11 exhausted all cases without a match [Send]{746ce7} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{746ce7} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:41.070Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{05fade} at testExample.wtest:11 exhausted all cases without a match [Send]{05fade} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{05fade} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:41.070Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:41.179Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:41.179Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:41.243Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:41.305Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:41.408Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:41.570Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:41.647Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":116,"timestamp":"2024-11-22T12:01:41.763Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T12:01:41.951Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:42.047Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{387642} at testExample.wtest:11 exhausted all cases without a match [Send]{387642} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{387642} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:42.725Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{6d92fe} at testExample.wtest:11 exhausted all cases without a match [Send]{6d92fe} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{6d92fe} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:42.726Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:42.830Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:42.831Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:42.914Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T12:01:43.194Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:43.194Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:44.758Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T12:01:44.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:44.957Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:45.023Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T12:01:45.134Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:45.191Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:45.339Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T12:01:45.448Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:45.960Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:01:46.064Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:01:46.480Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:01:46.600Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:46.604Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{da58ff} at testExample.wtest:11 exhausted all cases without a match [Send]{da58ff} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{da58ff} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:46.935Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{19ba69} at testExample.wtest:11 exhausted all cases without a match [Send]{19ba69} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{19ba69} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:46.935Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{815c3d} at testExample.wtest:11 exhausted all cases without a match [Send]{815c3d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{815c3d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:47.016Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ab1c7c} at testExample.wtest:11 exhausted all cases without a match [Send]{ab1c7c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{ab1c7c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:47.016Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5aaafa} at testExample.wtest:11 exhausted all cases without a match [Send]{5aaafa} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{5aaafa} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:47.122Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{6bad58} at testExample.wtest:11 exhausted all cases without a match [Send]{6bad58} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{6bad58} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:47.123Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9b4a2b} at testExample.wtest:11 exhausted all cases without a match [Send]{9b4a2b} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{9b4a2b} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:47.198Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{47d6ec} at testExample.wtest:11 exhausted all cases without a match [Send]{47d6ec} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{47d6ec} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:47.199Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:47.829Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:47.880Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:47.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{77b823} at testExample.wtest:11 exhausted all cases without a match [Send]{77b823} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{77b823} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:48.535Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{599ec3} at testExample.wtest:11 exhausted all cases without a match [Send]{599ec3} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{599ec3} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:48.535Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T12:01:49.324Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T12:01:49.446Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:49.447Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:49.530Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T12:01:49.642Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:49.720Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:49.782Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:01:49.887Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:01:50.103Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:01:50.814Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":135,"timestamp":"2024-11-22T12:01:51.824Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:01:51.927Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:01:52.926Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{530aa8} at testExample.wtest:11 exhausted all cases without a match [Send]{530aa8} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{530aa8} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:52.962Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{abfb17} at testExample.wtest:11 exhausted all cases without a match [Send]{abfb17} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{abfb17} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:52.962Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":128,"timestamp":"2024-11-22T12:01:53.094Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3b0972} at testExample.wtest:11 exhausted all cases without a match [Send]{3b0972} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{3b0972} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:53.169Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{372dec} at testExample.wtest:11 exhausted all cases without a match [Send]{372dec} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{372dec} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:53.169Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d0c610} at testExample.wtest:11 exhausted all cases without a match [Send]{d0c610} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{d0c610} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:53.481Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b8df8d} at testExample.wtest:11 exhausted all cases without a match [Send]{b8df8d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{b8df8d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:53.481Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:01:53.738Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4ebc26} at testExample.wtest:11 exhausted all cases without a match [Send]{4ebc26} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{4ebc26} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:53.820Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5c43dc} at testExample.wtest:11 exhausted all cases without a match [Send]{5c43dc} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{5c43dc} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:53.820Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c64e79} at testExample.wtest:11 exhausted all cases without a match [Send]{c64e79} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{c64e79} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:54.129Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{090e20} at testExample.wtest:11 exhausted all cases without a match [Send]{090e20} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{090e20} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:54.129Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":144,"timestamp":"2024-11-22T12:01:54.370Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d0a3d9} at testExample.wtest:11 exhausted all cases without a match [Send]{d0a3d9} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{d0a3d9} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:54.409Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{86de93} at testExample.wtest:11 exhausted all cases without a match [Send]{86de93} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{86de93} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:54.409Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{06bf61} at testExample.wtest:11 exhausted all cases without a match [Send]{06bf61} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{06bf61} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:01:55.205Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{02aba6} at testExample.wtest:11 exhausted all cases without a match [Send]{02aba6} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{02aba6} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:01:55.205Z"} +{"failures":[{"error":["wollok.lang.MessageNotUnderstoodException: a Furia does not understand tienePalabra7()"," at testExample.\"group of tests for pepita\".\"Furia\" [testExample.wtest:10]"],"test":"testExample.\"group of tests for pepita\".\"Furia\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":338,"timestamp":"2024-11-22T12:02:02.775Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":292,"timestamp":"2024-11-22T12:02:22.541Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9cbce8} at testExample.wtest:11 exhausted all cases without a match [Send]{9cbce8} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{9cbce8} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:29.317Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T12:02:29.513Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:02:29.540Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T12:02:29.654Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{72d143} at testExample.wtest:11 exhausted all cases without a match [Send]{72d143} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{72d143} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:29.772Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T12:02:30.037Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T12:02:30.350Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d3ed73} at testExample.wtest:11 exhausted all cases without a match [Send]{d3ed73} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{d3ed73} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:30.372Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T12:02:31.711Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":132,"timestamp":"2024-11-22T12:02:31.843Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T12:02:32.030Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ea9a22} at testExample.wtest:11 exhausted all cases without a match [Send]{ea9a22} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{ea9a22} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:32.108Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":125,"timestamp":"2024-11-22T12:02:32.239Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:02:32.328Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a3748d} at testExample.wtest:11 exhausted all cases without a match [Send]{a3748d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{a3748d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:32.419Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:02:32.583Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{605087} at testExample.wtest:11 exhausted all cases without a match [Send]{605087} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{605087} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:32.756Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:02:32.922Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9b7665} at testExample.wtest:11 exhausted all cases without a match [Send]{9b7665} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{9b7665} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:33.098Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{93a201} at testExample.wtest:11 exhausted all cases without a match [Send]{93a201} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{93a201} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:33.273Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7f632c} at testExample.wtest:11 exhausted all cases without a match [Send]{7f632c} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{7f632c} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:33.474Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T12:02:33.704Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{bd28c0} at testExample.wtest:11 exhausted all cases without a match [Send]{bd28c0} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{bd28c0} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:33.776Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T12:02:33.887Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T12:02:34.047Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{bbc0ab} at testExample.wtest:11 exhausted all cases without a match [Send]{bbc0ab} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{bbc0ab} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:34.122Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4571fc} at testExample.wtest:11 exhausted all cases without a match [Send]{4571fc} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Send]{4571fc} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:02:34.436Z"} +{"failures":[{"error":["wollok.lang.EvaluationError wrapping TypeScript Error: Could not resolve reference to value or its a reference to void"," at testExample.\"group of tests for pepita\".\"Furia\" [testExample.wtest:10]"],"test":"testExample.\"group of tests for pepita\".\"Furia\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":324,"timestamp":"2024-11-22T12:02:38.777Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:02:48.959Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":114,"timestamp":"2024-11-22T12:02:49.075Z"} +{"failures":[{"error":["wollok.lang.EvaluationError wrapping TypeScript Error: Could not resolve reference to value or its a reference to void"," at testExample.\"group of tests for pepita\".\"Furia\" [testExample.wtest:10]"],"test":"testExample.\"group of tests for pepita\".\"Furia\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":339,"timestamp":"2024-11-22T12:02:52.936Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method intensidadElevada() = true\n> 28 | }\n | ^\n 29 | \n 30 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method intensidadElevada() = true\n> 28 | }\n | ^\n 29 | \n 30 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:10.347Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method intensidadElevada() = true\n> 28 | }\n | ^\n 29 | \n 30 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | method intensidadElevada() = true\n> 28 | }\n | ^\n 29 | \n 30 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:10.797Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T12:03:11.855Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":134,"timestamp":"2024-11-22T12:03:11.990Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:03:14.077Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:03:14.257Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:03:14.520Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":303,"timestamp":"2024-11-22T12:03:18.815Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:03:23.130Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T12:03:38.134Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":213,"timestamp":"2024-11-22T12:03:38.348Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:03:38.468Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":147,"timestamp":"2024-11-22T12:03:38.628Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":258,"timestamp":"2024-11-22T12:03:38.888Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:03:38.990Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:03:39.125Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":181,"timestamp":"2024-11-22T12:03:39.307Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":168,"timestamp":"2024-11-22T12:03:39.476Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T12:03:39.600Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":168,"timestamp":"2024-11-22T12:03:39.774Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:03:39.774Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:39.780Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:03:39.780Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:03:39.896Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:39.903Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":133,"timestamp":"2024-11-22T12:03:40.042Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class A\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class A\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:47.620Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:03:47.680Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Al\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Al\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:47.887Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Ale\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Ale\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:47.981Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Aleg\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Aleg\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:48.328Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegr\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegr\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:48.426Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegri\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegri\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:48.669Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:48.758Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:48.933Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria i\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria i\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:49.232Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:03:49.274Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria in\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria in\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:49.429Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria int\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria int\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:49.611Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria in\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria in\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:49.890Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inh\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inh\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.121Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inhe\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inhe\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.197Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inher\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inher\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.302Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inheri\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inheri\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.475Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inheris\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inheris\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.564Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inheri\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inheri\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.821Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inherit\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | \n 29 | \n> 30 | class Alegria inherit\n | ^\n 31 | \n 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:50.919Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:51.104Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:51.364Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits E\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits E\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:51.714Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Em\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Em\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:51.986Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emo\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emo\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:52.204Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Em\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Em\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:52.470Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits E\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits E\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:52.630Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:52.774Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits A\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits A\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:53.091Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:03:53.111Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Al\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Al\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:53.339Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits A\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits A\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:53.568Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits \n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:53.731Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits E\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits E\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:54.008Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Em\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Em\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:54.220Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emo\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emo\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:54.388Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emoc\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emoc\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:54.541Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emoci\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emoci\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:54.623Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emocio\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emocio\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:54.773Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emocion\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 30 | class Alegria inherits Emocion\n 31 | \n> 32 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 33 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:03:55.013Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":171,"timestamp":"2024-11-22T12:03:57.097Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":146,"timestamp":"2024-11-22T12:03:57.254Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensidadD [Field]{11fc6b} at example.wlk:15 exhausted all cases without a match example.Emocion.intensidadD [Field]{11fc6b} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensidadD [Field]{11fc6b} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:03.993Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensidadDe [Field]{90c15d} at example.wlk:15 exhausted all cases without a match example.Emocion.intensidadDe [Field]{90c15d} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensidadDe [Field]{90c15d} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:04.302Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensidadDef [Field]{b42f00} at example.wlk:15 exhausted all cases without a match example.Emocion.intensidadDef [Field]{b42f00} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensidadDef [Field]{b42f00} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:04.483Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:04:04.602Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensidadDefa [Field]{4c9d6a} at example.wlk:15 exhausted all cases without a match example.Emocion.intensidadDefa [Field]{4c9d6a} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensidadDefa [Field]{4c9d6a} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:04.698Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:04:04.862Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.intensidadDefaul [Field]{0f0fbe} at example.wlk:15 exhausted all cases without a match example.Emocion.intensidadDefaul [Field]{0f0fbe} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.intensidadDefaul [Field]{0f0fbe} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:05.049Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":131,"timestamp":"2024-11-22T12:04:05.247Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:04:06.578Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":158,"timestamp":"2024-11-22T12:04:06.821Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":127,"timestamp":"2024-11-22T12:04:07.511Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:07.513Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T12:04:07.725Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:07.726Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:07.804Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:04:07.921Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:08.087Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | \n 17 | method\n> 18 | }\n | ^\n 19 | \n 20 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | \n 17 | method\n> 18 | }\n | ^\n 19 | \n 20 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:08.111Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:08.111Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | \n 17 | method \n> 18 | }\n | ^\n 19 | \n 20 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 16 | \n 17 | method \n> 18 | }\n | ^\n 19 | \n 20 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:08.114Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:08.211Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:08.748Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:08.812Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:08.961Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:04:09.070Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:09.220Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:09.312Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:09.368Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:04:09.469Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:09.719Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:09.779Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:04:10.131Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:04:11.065Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:04:12.399Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T12:04:13.061Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:04:14.056Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:04:14.949Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{f57873} at example.wlk:-- exhausted all cases without a match [Return]{f57873} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{f57873} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:04:15.441Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:15.535Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:04:23.627Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:04:24.051Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.051Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.119Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:04:24.239Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.301Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.378Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:04:24.482Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:04:24.585Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.764Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":195,"timestamp":"2024-11-22T12:04:24.960Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method\n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method\n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:24.980Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.980Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method \n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method \n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:24.986Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:24.986Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:04:25.470Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:04:25.682Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":126,"timestamp":"2024-11-22T12:04:25.892Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:04:26.106Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:04:26.212Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:04:26.318Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:04:26.704Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:04:26.910Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:04:27.153Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T12:04:27.576Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method \n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method \n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:28.114Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method\n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | method\n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:28.295Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:04:28.521Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:04:28.927Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:04:29.094Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:40.049Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:40.116Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:40.312Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | const\n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | const\n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:40.931Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | const \n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 32 | class Alegria inherits Emocion{\n 33 | const \n> 34 | }\n | ^\n 35 | \n 36 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:41.349Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:04:41.715Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.in [Field]{918801} at example.wlk:33 exhausted all cases without a match example.Alegria.in [Field]{918801} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.in [Field]{918801} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:41.836Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:04:41.947Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.int [Field]{545ed4} at example.wlk:33 exhausted all cases without a match example.Alegria.int [Field]{545ed4} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.int [Field]{545ed4} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:42.028Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.inten [Field]{c3b056} at example.wlk:33 exhausted all cases without a match example.Alegria.inten [Field]{c3b056} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.inten [Field]{c3b056} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:42.276Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.intens [Field]{19a77c} at example.wlk:33 exhausted all cases without a match example.Alegria.intens [Field]{19a77c} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.intens [Field]{19a77c} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:42.758Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:04:43.135Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T12:04:43.252Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.intensida [Field]{f4f3fa} at example.wlk:33 exhausted all cases without a match example.Alegria.intensida [Field]{f4f3fa} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.intensida [Field]{f4f3fa} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:43.270Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.intensidadA [Field]{c8e371} at example.wlk:33 exhausted all cases without a match example.Alegria.intensidadA [Field]{c8e371} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.intensidadA [Field]{c8e371} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:43.781Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.intensidadAle [Field]{c0e4a0} at example.wlk:33 exhausted all cases without a match example.Alegria.intensidadAle [Field]{c0e4a0} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.intensidadAle [Field]{c0e4a0} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:44.125Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.intensidadAlegrr [Field]{955e64} at example.wlk:33 exhausted all cases without a match example.Alegria.intensidadAlegrr [Field]{955e64} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.intensidadAlegrr [Field]{955e64} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:44.604Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Alegria.intensidadAlegre [Field]{d38dba} at example.wlk:33 exhausted all cases without a match example.Alegria.intensidadAlegre [Field]{d38dba} at example.wlk:33 exhausted all cases without a match","stack":"Error: example.Alegria.intensidadAlegre [Field]{d38dba} at example.wlk:33 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:04:45.451Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T12:04:46.405Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:04:46.518Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T12:04:47.214Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:04:47.579Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:47.579Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:47.647Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T12:04:47.777Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:47.780Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:04:48.065Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:48.635Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | method\n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | method\n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:48.883Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | method \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | method \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:48.918Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:49.622Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:49.685Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:04:49.789Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:49.846Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:04:49.949Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:04:50.112Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:04:50.676Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":147,"timestamp":"2024-11-22T12:04:51.620Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:51.620Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | method \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | method \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:51.627Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | omethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | omethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.115Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | ovmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | ovmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.147Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | ovemethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | ovemethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.326Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.435Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overrmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overrmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.601Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overrimethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overrimethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.714Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overridmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overridmethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.815Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overridemethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | overridemethod \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:53.898Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | override method \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | \n 35 | override method \n> 36 | }\n | ^\n 37 | \n 38 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:04:54.160Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:04:56.619Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:04:56.619Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:04:56.866Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":132,"timestamp":"2024-11-22T12:05:01.814Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:05:01.936Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:05:02.136Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:05:02.334Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:05:02.496Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":144,"timestamp":"2024-11-22T12:05:04.438Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{72f5cf} at example.wlk:-- exhausted all cases without a match [Return]{72f5cf} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{72f5cf} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:05:05.808Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:05:05.919Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:05:05.990Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:05:06.059Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:05:06.160Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:05:06.225Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:05:06.604Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T12:05:08.118Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":174,"timestamp":"2024-11-22T12:05:08.294Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T12:05:53.380Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":262,"timestamp":"2024-11-22T12:05:53.646Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":170,"timestamp":"2024-11-22T12:05:53.817Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:05:53.954Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:05:54.163Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":117,"timestamp":"2024-11-22T12:05:54.381Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:05:54.382Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:05:54.764Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:05:54.933Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:05:55.771Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:05:55.971Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | \n 30 | method\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | \n 30 | method\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:05:55.976Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | \n 30 | method \n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | \n 30 | method \n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:05:55.989Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:05:56.267Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:05:56.379Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:05:56.895Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:05:57.364Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:05:59.449Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T12:06:03.728Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:06:03.833Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:06:04.257Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:06:04.670Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:06:05.039Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:05.960Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:06.031Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:06.190Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:06:06.298Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | override method\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | override method\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:06:06.305Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:06.305Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | override method \n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | override method \n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:06:06.311Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:06.311Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:06:06.422Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":151,"timestamp":"2024-11-22T12:06:06.633Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:06:06.852Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:06:07.130Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:06:07.838Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e5d0b4} at example.wlk:30 exhausted all cases without a match [Parameter]{e5d0b4} at example.wlk:30 exhausted all cases without a match","stack":"Error: [Parameter]{e5d0b4} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:13.394Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:13.493Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{ca3e01} at example.wlk:30 exhausted all cases without a match [Parameter]{ca3e01} at example.wlk:30 exhausted all cases without a match","stack":"Error: [Parameter]{ca3e01} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:13.575Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{6fab2a} at example.wlk:30 exhausted all cases without a match [Parameter]{6fab2a} at example.wlk:30 exhausted all cases without a match","stack":"Error: [Parameter]{6fab2a} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:13.824Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{a6c91c} at example.wlk:30 exhausted all cases without a match [Parameter]{a6c91c} at example.wlk:30 exhausted all cases without a match","stack":"Error: [Parameter]{a6c91c} at example.wlk:30 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:14.154Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:14.335Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"785fb1b2-750a-44f2-a29c-bbfc65317410","members":[{"id":"66be15cf-b10f-46c1-89c9-ec6d26fe40cc","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidadAlegre","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":35,"offset":620},"start":{"column":5,"line":35,"offset":598}},"value":{"id":"79da0255-6c9d-41be-aa90-ba78ea06d0a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"00a93063-e4c4-44f2-99b3-29b89c1e5a4a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"94e60553-0f0d-4ee1-97d9-04a30d4f6ee0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"e0304597-f920-42a5-939e-e4eb8d7451a5","metadata":[],"name":"intensidadAlegre","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":37,"offset":675},"start":{"column":36,"line":37,"offset":659}}}}],"sourceMap":{"end":{"column":52,"line":37,"offset":675},"start":{"column":36,"line":37,"offset":659}}},"id":"70a96ed3-20b1-47e2-884e-ae7a5af72ef7","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":37,"offset":675},"start":{"column":5,"line":37,"offset":628}}},{"id":"add1a7fe-4631-4dbb-9d96-edbafcd3afbe","isOverride":true,"metadata":[],"name":"liberar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":39,"offset":708},"start":{"column":5,"line":39,"offset":683}}}],"metadata":[],"name":"Alegria","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":32,"line":39,"offset":710},"start":{"column":31,"line":39,"offset":709}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":41,"offset":716},"start":{"column":1,"line":34,"offset":561}},"supertypes":[{"args":[],"id":"aedf40fd-c2fc-4d8e-9d68-c8cc733b7624","metadata":[],"reference":{"id":"d5fa42c3-7cd7-4076-bcd8-bd53a967fd7b","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":34,"offset":591},"start":{"column":24,"line":34,"offset":584}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":34,"offset":591},"start":{"column":24,"line":34,"offset":584}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:15.670Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{df94a8} at example.wlk:39 exhausted all cases without a match [Parameter]{df94a8} at example.wlk:39 exhausted all cases without a match","stack":"Error: [Parameter]{df94a8} at example.wlk:39 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:16.288Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:06:16.396Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:16.396Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T12:06:16.505Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{5d5eab} at example.wlk:39 exhausted all cases without a match [Parameter]{5d5eab} at example.wlk:39 exhausted all cases without a match","stack":"Error: [Parameter]{5d5eab} at example.wlk:39 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:16.524Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:06:16.706Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T12:06:16.832Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{d0e3d3} at example.wlk:39 exhausted all cases without a match [Parameter]{d0e3d3} at example.wlk:39 exhausted all cases without a match","stack":"Error: [Parameter]{d0e3d3} at example.wlk:39 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:06:16.853Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:06:17.193Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:06:17.294Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":127,"timestamp":"2024-11-22T12:06:18.242Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:06:18.492Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{25334f} at example.wlk:-- exhausted all cases without a match [Return]{25334f} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{25334f} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:06:18.772Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:18.859Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:06:21.280Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d5ea3c} at example.wlk:-- exhausted all cases without a match [Return]{d5ea3c} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d5ea3c} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:06:21.302Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:06:21.407Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:21.408Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:21.472Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:21.545Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:06:21.647Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:21.721Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:06:21.835Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:21.997Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:06:22.103Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T12:06:23.195Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:06:23.352Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:06:23.899Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:06:24.062Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:06:25.705Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:06:25.953Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:06:26.389Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T12:06:40.712Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:06:40.817Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T12:07:10.336Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:07:10.730Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:07:11.165Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:07:26.662Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":154,"timestamp":"2024-11-22T12:07:26.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:26.851Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T12:07:26.965Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T12:07:27.143Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":184,"timestamp":"2024-11-22T12:07:27.326Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":149,"timestamp":"2024-11-22T12:07:27.480Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T12:07:27.613Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":157,"timestamp":"2024-11-22T12:07:27.807Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":141,"timestamp":"2024-11-22T12:07:28.638Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":146,"timestamp":"2024-11-22T12:07:29.004Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:07:30.868Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:07:31.912Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:07:32.464Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":134,"timestamp":"2024-11-22T12:07:32.849Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:33.610Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:33.763Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:07:34.404Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:34.931Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:35.375Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T12:07:35.499Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:35.596Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:35.656Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:35.906Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:35.966Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:07:36.167Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:07:38.252Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:07:44.316Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":146,"timestamp":"2024-11-22T12:07:44.675Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:44.789Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:44.870Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:44.940Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:45.189Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:45.195Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:07:45.195Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class \n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class \n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:45.509Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class E\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class E\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:45.847Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Ev\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Ev\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:46.157Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Eve\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Eve\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:46.256Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Even\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Even\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:46.333Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Event\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Event\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:46.448Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Evento\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | class Evento\n 46 | \n> 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n | ^\n 48 | const eitan = new Persona(edad = 13, emociones=[furia1])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:46.553Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento()\n | ^\n 46 | \n 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento()\n | ^\n 46 | \n 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:46.890Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){}\n | ^\n 46 | \n 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){}\n | ^\n 46 | \n 47 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:47.967Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | \n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | \n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:07:48.182Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | c\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | c\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:20.628Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:20.668Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | co\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | co\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:20.785Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | con\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | con\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.004Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | cons\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | cons\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.048Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.244Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const \n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const \n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.325Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const d\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const d\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.518Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const de\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const de\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.653Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const des\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const des\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:21.816Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const desc\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const desc\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:22.180Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descr\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descr\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:22.452Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descri\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descri\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:22.652Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descrip\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descrip\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:22.845Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripc\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripc\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:22.918Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripci\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripci\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:23.063Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcio\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcio\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:23.479Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:23.709Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion \n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion \n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:24.199Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:24.312Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[]\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[]\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:24.665Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:24.976Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:26.700Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:27.463Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:27.488Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:27.493Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | co\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | co\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:27.503Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:27.503Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | con\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | con\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:27.751Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | cons\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | cons\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:27.819Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:28.054Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:28.117Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:28.546Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:28.958Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const i\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const i\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:29.503Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:29.521Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:29.526Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const im\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const im\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:29.694Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const i\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const i\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.033Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.202Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.335Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | cons\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | cons\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.462Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | con\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | con\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.615Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | co\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | co\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.752Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.867Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:30.986Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:31.294Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:31.636Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:31.667Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:31.739Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:31.767Z"} diff --git a/log/wollok1.log b/log/wollok1.log new file mode 100644 index 0000000..c5fb0a6 --- /dev/null +++ b/log/wollok1.log @@ -0,0 +1,519 @@ +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:31.867Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:31.886Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:31.978Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:32.002Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:32.204Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:32.221Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:32.257Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:32.282Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:32.385Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:32.626Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:32.641Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:32.647Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:32.837Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:32.999Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:33.085Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{048146} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:33.111Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:33.323Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:33.506Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:33.630Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:34.202Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:34.225Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:36.893Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:37.267Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:37.320Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:38.487Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:38.835Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:39.100Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:44.111Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | c\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:44.289Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:44.337Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:44.346Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | co\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | co\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:44.420Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | con\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | con\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:44.675Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | cons\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | cons\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:44.765Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:45.004Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:45.060Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const i\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const i\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:45.333Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const im\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const im\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:45.495Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:45.524Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:08:45.531Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const imp\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const imp\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:45.704Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impa\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impa\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:45.784Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:45.801Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impac\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impac\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:46.001Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:46.027Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impact\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impact\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:46.097Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:46.121Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:46.225Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const pimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const pimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:48.748Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.furia1 [Variable]{640f7a} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:48.796Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const primpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const primpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:48.902Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const proimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const proimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.002Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.176Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propeimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propeimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.277Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const properimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const properimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.370Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propertimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propertimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.581Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propertyimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const propertyimpacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.695Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:49.915Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:51.758Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:52.513Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento(){\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:53.376Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"ced0c5c6-856f-4763-82c9-6998cb34d31d","imports":[],"members":[{"id":"23f0778d-122b-4d45-8e92-b103d1f52d6f","members":[{"id":"6e66c76b-9485-42d1-ae61-89766145b46b","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"e19acc0c-aeda-409c-8513-b59c937c44b7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"32967574-9860-4db6-b6d9-1101b0756766","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"197c836a-5c83-4b4f-ad23-11a143104e25","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"7bf9d54d-2bdf-4fe3-a0b9-209f1b972eb1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"3609fed4-773d-48b4-8394-f0b20a9fb9f0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"302eb310-31d6-4439-b166-406de738348a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9b42cc05-6aef-4b96-b3bc-4e6a3f9aba24","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"4c249a12-d473-4397-92f8-6ddccca9d63d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"fd6be813-a733-4a29-98bb-0cb357eceb89","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"5acd2a42-fc54-4e26-ae9f-e6ba5d49e907","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"d4438944-5d63-4365-80a9-858aaf8b9c4f","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"ea047d5e-2bbf-474e-a083-39ba33749006","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b5d4de27-d96a-4092-8887-8a14f4bc7910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"5b7763e9-ebad-457d-9fd8-588b31ee5d01","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"93ff0d8c-6d67-4e6b-b7f0-b7e23dc4557e","message":"add","metadata":[],"receiver":{"id":"3472a212-4bda-4ec4-8100-d943545c9145","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"b9f3e84a-0ee0-4240-a091-0f159d7e4b25","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"741bd930-e155-4306-8c76-a70349b51613","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":179},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"e862616e-839f-4f99-b28c-dbce5879e892","members":[{"id":"dc534401-10f4-46a5-a544-6081d63c9ebc","isConstant":false,"isProperty":false,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":15,"offset":228},"start":{"column":3,"line":15,"offset":201}},"value":{"id":"90420175-d183-4104-b8db-0a21c53ddcbb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":15,"offset":228},"start":{"column":27,"line":15,"offset":225}},"value":100}},{"body":{"id":"d9f21d63-889b-4138-94f5-0cf5a02b610f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"06bb32ae-9cfc-4979-9393-81d41cd1bb5e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6910c44a-3e9f-4fb3-86e4-e75dfb613840","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":17,"offset":273},"start":{"column":25,"line":17,"offset":256}}}}],"sourceMap":{"end":{"column":42,"line":17,"offset":273},"start":{"column":25,"line":17,"offset":256}}},"id":"05b0ec24-543c-40f3-94ba-84a76f3c4074","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":17,"offset":273},"start":{"column":3,"line":17,"offset":234}}},{"body":{"id":"ed910cbe-de93-453c-b923-757782f5b06a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":28,"line":18,"offset":302},"start":{"column":26,"line":18,"offset":300}}},"id":"a52b29f1-e22f-452c-997a-1036e575562c","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"d6fe048b-c865-4553-88e4-58d63425de9f","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":18,"offset":298},"start":{"column":18,"line":18,"offset":292}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":18,"offset":302},"start":{"column":3,"line":18,"offset":277}}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":20,"offset":307},"start":{"column":1,"line":14,"offset":183}},"supertypes":[]},{"id":"6eb91474-9c5e-4bdc-9eaf-90444ac2dfe1","members":[{"id":"134b3959-24bb-4c63-9a0d-e7388e79900f","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":23,"offset":365},"start":{"column":3,"line":23,"offset":344}},"value":{"id":"a6fba657-5f64-4a87-9d46-fbf3cd75c028","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":23,"offset":365},"start":{"column":22,"line":23,"offset":363}},"value":[{"id":"213e2001-8cc1-4626-a822-49a8b335b1e1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"ed48ac1b-af6b-48c9-814b-cfa42a026a9c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"89a9d7c2-1485-4f2e-9e84-0dde80893483","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"05376602-45b0-4056-9255-16a189deaaba","message":"intensidadElevada","metadata":[],"receiver":{"id":"a5bd2ce1-31a0-4e10-bd8a-07d6fec8d236","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":25,"offset":427},"start":{"column":55,"line":25,"offset":423}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":55,"line":25,"offset":423}}}],"id":"2e9e8675-6207-4060-96ce-4a140c061d3d","message":"and","metadata":[],"receiver":{"args":[],"id":"258b9fa9-8131-48df-96a4-0fded86d8e17","message":"tienePalabrota7","metadata":[],"receiver":{"id":"9b9be2e1-26c1-4898-9ef8-98cd2bf06808","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":25,"offset":400},"start":{"column":28,"line":25,"offset":396}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":50,"line":25,"offset":418},"start":{"column":28,"line":25,"offset":396}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":28,"line":25,"offset":396}}}}],"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":28,"line":25,"offset":396}}},"id":"22450282-057f-44cd-aedf-b6d102e34cba","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":3,"line":25,"offset":371}}},{"body":{"id":"a1b78734-4ffc-4630-8b7d-daa66aa06a22","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9cd2e158-ffcc-4929-bcba-d71798f1dd7f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"609fa03b-784e-4bc4-9263-782b80be903e","members":[{"body":{"id":"34586846-a385-42c6-82c0-52b1629ad1bb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c087d075-fdc6-4c1b-92ab-5014cf1b8e9e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e4b01d55-cac1-40bd-b155-a350d03f629c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":28,"offset":512},"start":{"column":57,"line":28,"offset":511}},"value":7}],"id":"da0dce1b-f9e5-43f7-8769-fe65e363d30e","message":">","metadata":[],"receiver":{"args":[],"id":"58a3f9ce-70c2-40b7-94d4-46fe0742ac0c","message":"size","metadata":[],"receiver":{"id":"f6529753-d61e-41bf-b89e-be7643ea1927","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":28,"offset":503},"start":{"column":48,"line":28,"offset":502}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":28,"offset":510},"start":{"column":48,"line":28,"offset":502}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":28,"offset":512},"start":{"column":48,"line":28,"offset":502}}}}]},"id":"67bd3c1a-82de-4b86-9ee4-f7e50b253e0d","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"9bde2a81-fbd7-47fc-8cc0-173c63f618a8","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":28,"offset":500},"start":{"column":45,"line":28,"offset":499}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"f08f3341-171f-4b37-ac28-26cc6dba9b28","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"5f0c7652-73a7-48b1-95a7-f44fc05bf93d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":44,"line":28,"offset":498}},"supertypes":[{"args":[],"id":"eb26b596-63dc-49e1-ba0c-1e81d504ff3b","metadata":[],"reference":{"id":"8ae5defb-2731-47f2-be8f-c0720db3c049","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"59f0aea4-ad1f-40ed-a727-61025e4c94ea","message":"any","metadata":[],"receiver":{"id":"ae8b36d0-956c-4527-966e-a2959f4ceee2","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":28,"offset":494},"start":{"column":30,"line":28,"offset":484}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":30,"line":28,"offset":484}}}}],"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":30,"line":28,"offset":484}}},"id":"1fa1be6d-7690-488d-a0ba-56d6a280de42","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":3,"line":28,"offset":457}}},{"body":{"id":"9f70414c-345a-44d5-8546-b7101ffffc11","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3134e23d-f8ea-4162-8016-3adf66d43657","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"17431b07-3532-47fb-b5f9-7214363d1e4d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":30,"offset":552},"start":{"column":32,"line":30,"offset":548}},"value":true}}],"sourceMap":{"end":{"column":36,"line":30,"offset":552},"start":{"column":32,"line":30,"offset":548}}},"id":"8b44ceb5-9fdf-4446-9058-b81029561520","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":30,"offset":552},"start":{"column":3,"line":30,"offset":519}}},{"id":"f3855d8f-0f2e-486f-a96f-da1b59e64321","isOverride":false,"metadata":[],"name":"override","parameters":[],"problems":[{"code":"malformedMember","sourceMap":{"end":{"column":64,"line":32,"offset":619},"start":{"column":18,"line":32,"offset":573}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":32,"offset":619},"start":{"column":3,"line":32,"offset":558}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":33,"offset":622},"start":{"column":1,"line":22,"offset":311}},"supertypes":[{"args":[],"id":"82d6d12a-33a7-4899-bc27-99f72e32c501","metadata":[],"reference":{"id":"9acdfdf9-a5d6-4f92-bf0e-d8509f795055","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":22,"offset":339},"start":{"column":22,"line":22,"offset":332}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":22,"offset":339},"start":{"column":22,"line":22,"offset":332}}}]},{"id":"0e3df134-5e68-4ca4-8eb7-df79f60f3842","members":[{"id":"d9b2a565-fa5b-473a-b9ac-f1444f8b7b5e","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidadAlegre","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":37,"offset":687},"start":{"column":5,"line":37,"offset":665}},"value":{"id":"d863700c-10a7-40dd-99d1-7b3ef9b56129","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"7dc25113-1367-4b04-b322-98850277a7b7","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0e51909-4f58-4631-bb3a-8a3a0b9785fd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"e8ee3031-7ed4-4bfd-87bc-2b5a9e8dc248","metadata":[],"name":"intensidadAlegre","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":39,"offset":742},"start":{"column":36,"line":39,"offset":726}}}}],"sourceMap":{"end":{"column":52,"line":39,"offset":742},"start":{"column":36,"line":39,"offset":726}}},"id":"5453465d-f3c1-49ab-96ba-0d1227526f78","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":39,"offset":742},"start":{"column":5,"line":39,"offset":695}}},{"body":{"id":"83333a0e-0a5e-436c-99f1-2192c730a4f3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"00b6c717-d7f5-42a6-b091-cb007e10857a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"e72df891-ddc0-493e-ab47-152b50562eb0","message":"intensidad","metadata":[],"receiver":{"id":"c392e49f-fff8-42c1-a0b8-c747023ff9bd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":41,"offset":788},"start":{"column":39,"line":41,"offset":784}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":41,"offset":801},"start":{"column":39,"line":41,"offset":784}}}}],"sourceMap":{"end":{"column":56,"line":41,"offset":801},"start":{"column":39,"line":41,"offset":784}}},"id":"fee51245-fa8a-4d5e-b838-c148d6b5c239","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"c1e186f3-d3ca-40b2-99be-e35fac84e863","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":41,"offset":780},"start":{"column":29,"line":41,"offset":774}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":41,"offset":801},"start":{"column":5,"line":41,"offset":750}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":43,"offset":806},"start":{"column":1,"line":36,"offset":628}},"supertypes":[{"args":[],"id":"b25f52f6-bafc-463b-8628-31121b221199","metadata":[],"reference":{"id":"01ead625-ef94-4b1c-afae-72e5fb8e0000","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":36,"offset":658},"start":{"column":24,"line":36,"offset":651}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":36,"offset":658},"start":{"column":24,"line":36,"offset":651}}}]},{"id":"6765d023-b814-4fb6-a5c0-d65ce0640f7a","isConstant":true,"metadata":[],"name":"furia1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":47,"offset":869},"start":{"column":1,"line":47,"offset":818}},"value":{"args":[{"id":"a5390654-b77e-4a74-91c5-ba0331a8a47a","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":47,"offset":868},"start":{"column":26,"line":47,"offset":843}},"value":{"id":"51315647-eeaa-4afc-a922-8d1bc71fb725","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":47,"offset":868},"start":{"column":37,"line":47,"offset":854}},"value":[{"id":"4898ff1a-72da-4651-ac7a-e4aaaa6bea54","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"cb7b36c7-e855-4da6-b740-73115bee5624","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":50,"line":47,"offset":867},"start":{"column":38,"line":47,"offset":855}},"value":"AAAAAAAAAA"}]]}}],"id":"cebb2851-d6f1-4590-96d9-abf03ed55573","instantiated":{"id":"e9bd1e24-a6b8-40b4-b502-444586547aa2","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":47,"offset":842},"start":{"column":20,"line":47,"offset":837}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":47,"offset":869},"start":{"column":16,"line":47,"offset":833}}}},{"id":"842e0553-0d66-41cc-9795-45c726048146","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":48,"offset":927},"start":{"column":1,"line":48,"offset":871}},"value":{"args":[{"id":"dd6890b3-a17e-4190-9a09-b6d38a39f399","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":48,"offset":906},"start":{"column":27,"line":48,"offset":897}},"value":{"id":"a23608b6-9c3e-4240-b3d1-33f220cf0598","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":48,"offset":906},"start":{"column":34,"line":48,"offset":904}},"value":13}},{"id":"2cb33f94-a179-4988-81b1-79496d243394","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":48,"offset":926},"start":{"column":38,"line":48,"offset":908}},"value":{"id":"ba08f29e-6db6-4cde-9b03-0bf79e94a223","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":48,"offset":926},"start":{"column":48,"line":48,"offset":918}},"value":[{"id":"fc175bd2-0f65-43a9-beb9-a80285fe9638","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e7ff3784-f96f-4c47-9dde-4e9590f5e633","metadata":[],"name":"furia1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":48,"offset":925},"start":{"column":49,"line":48,"offset":919}}}]]}}],"id":"e1df661d-d29e-42e1-9891-f8ac368b1285","instantiated":{"id":"5ced1578-26d2-4aa2-bde2-59faddd0ef70","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":48,"offset":896},"start":{"column":19,"line":48,"offset":889}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":48,"offset":927},"start":{"column":15,"line":48,"offset":885}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":5,"line":45,"offset":814},"start":{"column":1,"line":45,"offset":810}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:57.244Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"ced0c5c6-856f-4763-82c9-6998cb34d31d","imports":[],"members":[{"id":"23f0778d-122b-4d45-8e92-b103d1f52d6f","members":[{"id":"6e66c76b-9485-42d1-ae61-89766145b46b","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"e19acc0c-aeda-409c-8513-b59c937c44b7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"32967574-9860-4db6-b6d9-1101b0756766","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"197c836a-5c83-4b4f-ad23-11a143104e25","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"7bf9d54d-2bdf-4fe3-a0b9-209f1b972eb1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"3609fed4-773d-48b4-8394-f0b20a9fb9f0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"302eb310-31d6-4439-b166-406de738348a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9b42cc05-6aef-4b96-b3bc-4e6a3f9aba24","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"4c249a12-d473-4397-92f8-6ddccca9d63d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"fd6be813-a733-4a29-98bb-0cb357eceb89","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"5acd2a42-fc54-4e26-ae9f-e6ba5d49e907","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"d4438944-5d63-4365-80a9-858aaf8b9c4f","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"ea047d5e-2bbf-474e-a083-39ba33749006","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b5d4de27-d96a-4092-8887-8a14f4bc7910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"5b7763e9-ebad-457d-9fd8-588b31ee5d01","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"93ff0d8c-6d67-4e6b-b7f0-b7e23dc4557e","message":"add","metadata":[],"receiver":{"id":"3472a212-4bda-4ec4-8100-d943545c9145","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"b9f3e84a-0ee0-4240-a091-0f159d7e4b25","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"741bd930-e155-4306-8c76-a70349b51613","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":179},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"e862616e-839f-4f99-b28c-dbce5879e892","members":[{"id":"dc534401-10f4-46a5-a544-6081d63c9ebc","isConstant":false,"isProperty":false,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":15,"offset":228},"start":{"column":3,"line":15,"offset":201}},"value":{"id":"90420175-d183-4104-b8db-0a21c53ddcbb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":15,"offset":228},"start":{"column":27,"line":15,"offset":225}},"value":100}},{"body":{"id":"d9f21d63-889b-4138-94f5-0cf5a02b610f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"06bb32ae-9cfc-4979-9393-81d41cd1bb5e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6910c44a-3e9f-4fb3-86e4-e75dfb613840","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":17,"offset":273},"start":{"column":25,"line":17,"offset":256}}}}],"sourceMap":{"end":{"column":42,"line":17,"offset":273},"start":{"column":25,"line":17,"offset":256}}},"id":"05b0ec24-543c-40f3-94ba-84a76f3c4074","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":17,"offset":273},"start":{"column":3,"line":17,"offset":234}}},{"body":{"id":"ed910cbe-de93-453c-b923-757782f5b06a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":28,"line":18,"offset":302},"start":{"column":26,"line":18,"offset":300}}},"id":"a52b29f1-e22f-452c-997a-1036e575562c","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"d6fe048b-c865-4553-88e4-58d63425de9f","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":18,"offset":298},"start":{"column":18,"line":18,"offset":292}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":18,"offset":302},"start":{"column":3,"line":18,"offset":277}}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":20,"offset":307},"start":{"column":1,"line":14,"offset":183}},"supertypes":[]},{"id":"6eb91474-9c5e-4bdc-9eaf-90444ac2dfe1","members":[{"id":"134b3959-24bb-4c63-9a0d-e7388e79900f","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":23,"offset":365},"start":{"column":3,"line":23,"offset":344}},"value":{"id":"a6fba657-5f64-4a87-9d46-fbf3cd75c028","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":23,"offset":365},"start":{"column":22,"line":23,"offset":363}},"value":[{"id":"213e2001-8cc1-4626-a822-49a8b335b1e1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"ed48ac1b-af6b-48c9-814b-cfa42a026a9c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"89a9d7c2-1485-4f2e-9e84-0dde80893483","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"05376602-45b0-4056-9255-16a189deaaba","message":"intensidadElevada","metadata":[],"receiver":{"id":"a5bd2ce1-31a0-4e10-bd8a-07d6fec8d236","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":25,"offset":427},"start":{"column":55,"line":25,"offset":423}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":55,"line":25,"offset":423}}}],"id":"2e9e8675-6207-4060-96ce-4a140c061d3d","message":"and","metadata":[],"receiver":{"args":[],"id":"258b9fa9-8131-48df-96a4-0fded86d8e17","message":"tienePalabrota7","metadata":[],"receiver":{"id":"9b9be2e1-26c1-4898-9ef8-98cd2bf06808","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":25,"offset":400},"start":{"column":28,"line":25,"offset":396}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":50,"line":25,"offset":418},"start":{"column":28,"line":25,"offset":396}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":28,"line":25,"offset":396}}}}],"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":28,"line":25,"offset":396}}},"id":"22450282-057f-44cd-aedf-b6d102e34cba","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":79,"line":25,"offset":447},"start":{"column":3,"line":25,"offset":371}}},{"body":{"id":"a1b78734-4ffc-4630-8b7d-daa66aa06a22","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9cd2e158-ffcc-4929-bcba-d71798f1dd7f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"609fa03b-784e-4bc4-9263-782b80be903e","members":[{"body":{"id":"34586846-a385-42c6-82c0-52b1629ad1bb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c087d075-fdc6-4c1b-92ab-5014cf1b8e9e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e4b01d55-cac1-40bd-b155-a350d03f629c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":28,"offset":512},"start":{"column":57,"line":28,"offset":511}},"value":7}],"id":"da0dce1b-f9e5-43f7-8769-fe65e363d30e","message":">","metadata":[],"receiver":{"args":[],"id":"58a3f9ce-70c2-40b7-94d4-46fe0742ac0c","message":"size","metadata":[],"receiver":{"id":"f6529753-d61e-41bf-b89e-be7643ea1927","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":28,"offset":503},"start":{"column":48,"line":28,"offset":502}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":28,"offset":510},"start":{"column":48,"line":28,"offset":502}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":28,"offset":512},"start":{"column":48,"line":28,"offset":502}}}}]},"id":"67bd3c1a-82de-4b86-9ee4-f7e50b253e0d","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"9bde2a81-fbd7-47fc-8cc0-173c63f618a8","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":28,"offset":500},"start":{"column":45,"line":28,"offset":499}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"f08f3341-171f-4b37-ac28-26cc6dba9b28","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"5f0c7652-73a7-48b1-95a7-f44fc05bf93d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":44,"line":28,"offset":498}},"supertypes":[{"args":[],"id":"eb26b596-63dc-49e1-ba0c-1e81d504ff3b","metadata":[],"reference":{"id":"8ae5defb-2731-47f2-be8f-c0720db3c049","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"59f0aea4-ad1f-40ed-a727-61025e4c94ea","message":"any","metadata":[],"receiver":{"id":"ae8b36d0-956c-4527-966e-a2959f4ceee2","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":40,"line":28,"offset":494},"start":{"column":30,"line":28,"offset":484}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":30,"line":28,"offset":484}}}}],"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":30,"line":28,"offset":484}}},"id":"1fa1be6d-7690-488d-a0ba-56d6a280de42","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":28,"offset":513},"start":{"column":3,"line":28,"offset":457}}},{"body":{"id":"9f70414c-345a-44d5-8546-b7101ffffc11","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3134e23d-f8ea-4162-8016-3adf66d43657","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"17431b07-3532-47fb-b5f9-7214363d1e4d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":30,"offset":552},"start":{"column":32,"line":30,"offset":548}},"value":true}}],"sourceMap":{"end":{"column":36,"line":30,"offset":552},"start":{"column":32,"line":30,"offset":548}}},"id":"8b44ceb5-9fdf-4446-9058-b81029561520","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":30,"offset":552},"start":{"column":3,"line":30,"offset":519}}},{"id":"f3855d8f-0f2e-486f-a96f-da1b59e64321","isOverride":false,"metadata":[],"name":"override","parameters":[],"problems":[{"code":"malformedMember","sourceMap":{"end":{"column":64,"line":32,"offset":619},"start":{"column":18,"line":32,"offset":573}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":32,"offset":619},"start":{"column":3,"line":32,"offset":558}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":33,"offset":622},"start":{"column":1,"line":22,"offset":311}},"supertypes":[{"args":[],"id":"82d6d12a-33a7-4899-bc27-99f72e32c501","metadata":[],"reference":{"id":"9acdfdf9-a5d6-4f92-bf0e-d8509f795055","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":22,"offset":339},"start":{"column":22,"line":22,"offset":332}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":22,"offset":339},"start":{"column":22,"line":22,"offset":332}}}]},{"id":"0e3df134-5e68-4ca4-8eb7-df79f60f3842","members":[{"id":"d9b2a565-fa5b-473a-b9ac-f1444f8b7b5e","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidadAlegre","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":37,"offset":687},"start":{"column":5,"line":37,"offset":665}},"value":{"id":"d863700c-10a7-40dd-99d1-7b3ef9b56129","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"7dc25113-1367-4b04-b322-98850277a7b7","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0e51909-4f58-4631-bb3a-8a3a0b9785fd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"e8ee3031-7ed4-4bfd-87bc-2b5a9e8dc248","metadata":[],"name":"intensidadAlegre","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":39,"offset":742},"start":{"column":36,"line":39,"offset":726}}}}],"sourceMap":{"end":{"column":52,"line":39,"offset":742},"start":{"column":36,"line":39,"offset":726}}},"id":"5453465d-f3c1-49ab-96ba-0d1227526f78","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":39,"offset":742},"start":{"column":5,"line":39,"offset":695}}},{"body":{"id":"83333a0e-0a5e-436c-99f1-2192c730a4f3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"00b6c717-d7f5-42a6-b091-cb007e10857a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"e72df891-ddc0-493e-ab47-152b50562eb0","message":"intensidad","metadata":[],"receiver":{"id":"c392e49f-fff8-42c1-a0b8-c747023ff9bd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":41,"offset":788},"start":{"column":39,"line":41,"offset":784}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":41,"offset":801},"start":{"column":39,"line":41,"offset":784}}}}],"sourceMap":{"end":{"column":56,"line":41,"offset":801},"start":{"column":39,"line":41,"offset":784}}},"id":"fee51245-fa8a-4d5e-b838-c148d6b5c239","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"c1e186f3-d3ca-40b2-99be-e35fac84e863","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":41,"offset":780},"start":{"column":29,"line":41,"offset":774}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":41,"offset":801},"start":{"column":5,"line":41,"offset":750}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":43,"offset":806},"start":{"column":1,"line":36,"offset":628}},"supertypes":[{"args":[],"id":"b25f52f6-bafc-463b-8628-31121b221199","metadata":[],"reference":{"id":"01ead625-ef94-4b1c-afae-72e5fb8e0000","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":36,"offset":658},"start":{"column":24,"line":36,"offset":651}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":36,"offset":658},"start":{"column":24,"line":36,"offset":651}}}]},{"id":"6765d023-b814-4fb6-a5c0-d65ce0640f7a","isConstant":true,"metadata":[],"name":"furia1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":47,"offset":869},"start":{"column":1,"line":47,"offset":818}},"value":{"args":[{"id":"a5390654-b77e-4a74-91c5-ba0331a8a47a","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":47,"offset":868},"start":{"column":26,"line":47,"offset":843}},"value":{"id":"51315647-eeaa-4afc-a922-8d1bc71fb725","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":47,"offset":868},"start":{"column":37,"line":47,"offset":854}},"value":[{"id":"4898ff1a-72da-4651-ac7a-e4aaaa6bea54","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"cb7b36c7-e855-4da6-b740-73115bee5624","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":50,"line":47,"offset":867},"start":{"column":38,"line":47,"offset":855}},"value":"AAAAAAAAAA"}]]}}],"id":"cebb2851-d6f1-4590-96d9-abf03ed55573","instantiated":{"id":"e9bd1e24-a6b8-40b4-b502-444586547aa2","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":47,"offset":842},"start":{"column":20,"line":47,"offset":837}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":47,"offset":869},"start":{"column":16,"line":47,"offset":833}}}},{"id":"842e0553-0d66-41cc-9795-45c726048146","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":48,"offset":927},"start":{"column":1,"line":48,"offset":871}},"value":{"args":[{"id":"dd6890b3-a17e-4190-9a09-b6d38a39f399","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":48,"offset":906},"start":{"column":27,"line":48,"offset":897}},"value":{"id":"a23608b6-9c3e-4240-b3d1-33f220cf0598","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":48,"offset":906},"start":{"column":34,"line":48,"offset":904}},"value":13}},{"id":"2cb33f94-a179-4988-81b1-79496d243394","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":48,"offset":926},"start":{"column":38,"line":48,"offset":908}},"value":{"id":"ba08f29e-6db6-4cde-9b03-0bf79e94a223","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":48,"offset":926},"start":{"column":48,"line":48,"offset":918}},"value":[{"id":"fc175bd2-0f65-43a9-beb9-a80285fe9638","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e7ff3784-f96f-4c47-9dde-4e9590f5e633","metadata":[],"name":"furia1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":48,"offset":925},"start":{"column":49,"line":48,"offset":919}}}]]}}],"id":"e1df661d-d29e-42e1-9891-f8ac368b1285","instantiated":{"id":"5ced1578-26d2-4aa2-bde2-59faddd0ef70","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":48,"offset":896},"start":{"column":19,"line":48,"offset":889}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":48,"offset":927},"start":{"column":15,"line":48,"offset":885}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":5,"line":45,"offset":814},"start":{"column":1,"line":45,"offset":810}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:08:58.272Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento({\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | }\n 44 | \n> 45 | class Evento({\n | ^\n 46 | const descripcion =[\"\"]\n 47 | const property impacto\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:08:58.369Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:08:58.715Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:09:09.140Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:09:09.508Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:09:09.613Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:09.619Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T12:09:09.750Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:09.757Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:09.832Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:09:09.942Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:10.030Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:09:10.139Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method\n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method\n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:09:10.145Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:10.145Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method \n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method \n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:09:10.249Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:10.249Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:09:11.207Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method \n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method \n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:09:11.304Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:09:11.413Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T12:09:11.661Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:09:11.662Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:09:11.867Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":117,"timestamp":"2024-11-22T12:09:12.512Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:09:12.684Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method \n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method \n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:09:12.727Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method\n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 48 | \n 49 | method\n> 50 | }\n | ^\n 51 | \n 52 | const furia1 = new Furia(palabrotas=[\"AAAAAAAAAA\"])\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:09:15.926Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:09:16.261Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:09:16.429Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:09:16.669Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:09:16.774Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:09:16.963Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:09:17.076Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:09:17.286Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:09:17.625Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:09:39.915Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"344660df-2738-4eb0-8dc1-d586e109aa3a","isOverride":false,"metadata":[],"name":"override","parameters":[],"problems":[{"code":"malformedMember","sourceMap":{"end":{"column":64,"line":31,"offset":617},"start":{"column":18,"line":31,"offset":571}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":31,"offset":617},"start":{"column":3,"line":31,"offset":556}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:09:44.949Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T12:09:46.301Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:09:46.440Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:09:46.619Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T12:09:46.742Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":138,"timestamp":"2024-11-22T12:09:47.060Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":136,"timestamp":"2024-11-22T12:09:47.197Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:09:47.562Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"0e8a0d29-df50-44d9-84a1-c861a4445dc6","isOverride":false,"metadata":[],"name":"override","parameters":[],"problems":[{"code":"malformedMember","sourceMap":{"end":{"column":66,"line":31,"offset":619},"start":{"column":18,"line":31,"offset":571}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":31,"offset":619},"start":{"column":3,"line":31,"offset":556}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:09:48.905Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"0e8a0d29-df50-44d9-84a1-c861a4445dc6","isOverride":false,"metadata":[],"name":"override","parameters":[],"problems":[{"code":"malformedMember","sourceMap":{"end":{"column":66,"line":31,"offset":619},"start":{"column":18,"line":31,"offset":571}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":31,"offset":619},"start":{"column":3,"line":31,"offset":556}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:09:50.200Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:09:59.239Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:09:59.921Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":154,"timestamp":"2024-11-22T12:10:11.736Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.032Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:10:12.144Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.145Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.215Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:10:12.327Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.494Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.650Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 20 | method\n 21 | \n> 22 | }\n | ^\n 23 | \n 24 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 20 | method\n 21 | \n> 22 | }\n | ^\n 23 | \n 24 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:10:12.653Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.656Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":132,"timestamp":"2024-11-22T12:10:12.789Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 20 | method \n 21 | \n> 22 | }\n | ^\n 23 | \n 24 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 20 | method \n 21 | \n> 22 | }\n | ^\n 23 | \n 24 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:10:12.792Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:12.792Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:10:17.661Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":127,"timestamp":"2024-11-22T12:10:18.757Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{2fdb3a} at example.wlk:20 exhausted all cases without a match [Parameter]{2fdb3a} at example.wlk:20 exhausted all cases without a match","stack":"Error: [Parameter]{2fdb3a} at example.wlk:20 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:10:20.305Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:20.460Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:20.608Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:20.661Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{86da17} at example.wlk:20 exhausted all cases without a match [Parameter]{86da17} at example.wlk:20 exhausted all cases without a match","stack":"Error: [Parameter]{86da17} at example.wlk:20 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:10:20.914Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:21.002Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:10:22.077Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{c96671} at example.wlk:-- exhausted all cases without a match [Return]{c96671} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{c96671} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:10:22.609Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:22.692Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:10:23.369Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:23.444Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:23.511Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:10:23.641Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:24.693Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:26.381Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:26.610Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:10:26.715Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:10:27.047Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:10:27.683Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:10:33.700Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:10:48.333Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Emocion.p [Field]{c3d7b2} at example.wlk:15 exhausted all cases without a match example.Emocion.p [Field]{c3d7b2} at example.wlk:15 exhausted all cases without a match","stack":"Error: example.Emocion.p [Field]{c3d7b2} at example.wlk:15 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:10:48.544Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:48.634Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:48.736Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:10:48.843Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:48.844Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:10:48.950Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:49.107Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:49.172Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:10:49.298Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:49.362Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:10:49.465Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:49.628Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:10:49.689Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:11:04.571Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T12:12:18.080Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:12:18.192Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | const property impacto\n 46 | }\n> 47 | }\n | ^\n 48 | \n 49 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | const property impacto\n 46 | }\n> 47 | }\n | ^\n 48 | \n 49 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:12:18.683Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:12:19.345Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T12:12:19.654Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:12:21.344Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":158,"timestamp":"2024-11-22T12:12:22.266Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:12:22.618Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:12:24.054Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:26.535Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:12:29.068Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":161,"timestamp":"2024-11-22T12:12:47.546Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":185,"timestamp":"2024-11-22T12:12:47.769Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":166,"timestamp":"2024-11-22T12:12:47.936Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:47.937Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:12:48.049Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:48.050Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":162,"timestamp":"2024-11-22T12:12:48.297Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:12:48.439Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":171,"timestamp":"2024-11-22T12:12:48.611Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":170,"timestamp":"2024-11-22T12:12:48.782Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:12:49.201Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:54.210Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:54.273Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:54.432Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:12:57.230Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:57.700Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:57.867Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:12:59.175Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:13:04.434Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:13:04.894Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:13:05.245Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T12:13:10.148Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:13:11.210Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T12:13:13.181Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:13:19.948Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:13:20.075Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:13:20.247Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:13:23.067Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:13:23.155Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:13:23.212Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:13:23.314Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:13:23.797Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:13:24.351Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:13:25.994Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":158,"timestamp":"2024-11-22T12:13:26.318Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 40 | \n 41 | }\n> 42 | }//\n | ^\n 43 | class Evento{\n 44 | const descripcion =[\"\"]\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 40 | \n 41 | }\n> 42 | }//\n | ^\n 43 | class Evento{\n 44 | const descripcion =[\"\"]\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:13:45.638Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T12:13:46.461Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:13:51.598Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:13:51.782Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":136,"timestamp":"2024-11-22T12:13:52.676Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:13:55.241Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:14:01.738Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:14:01.841Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:01.847Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:02.685Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:02.838Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:04.103Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:04.375Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | / method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | / method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:05.860Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:06.015Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | / method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | / method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:07.029Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | // method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | // method intensidadElevada() = true\n> 31 | }\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:07.222Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | // method intensidadElevada() = true\n> 31 | /}\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 29 | // method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 30 | // method intensidadElevada() = true\n> 31 | /}\n | ^\n 32 | \n 33 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:14:07.949Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"8b1c39c0-8f55-47d9-8bd5-14af4f4ee449","members":[{"id":"981fb02b-8b66-405f-aec9-a8c0a1b7997f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":810},"start":{"column":3,"line":44,"offset":787}},"value":{"id":"dc735eba-24ed-4bf4-b544-21397bc5aa09","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":810},"start":{"column":22,"line":44,"offset":806}},"value":[{"id":"aad5388f-142a-4537-ac99-61ad51172578","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"abe38e90-2a75-46c4-a575-327035706b17","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":44,"offset":809},"start":{"column":23,"line":44,"offset":807}},"value":""}]]}},{"id":"470a32da-14f8-47e9-b5a7-8dc1d14ac9a1","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":45,"offset":836},"start":{"column":3,"line":45,"offset":814}},"value":{"id":"ca068c16-95b9-419d-994f-0b7701a95016","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"1e8c711d-0614-4af0-bea2-bdbbfeaa6a1c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d54bc602-62a1-43b6-94e5-aa020e11b519","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f338bb61-ce2a-425c-8b4c-313e0cc3349a","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"590f5e2f-6478-4a6f-a131-af641bc5b3b5","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":47,"offset":890},"start":{"column":3,"line":47,"offset":842}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":893},"start":{"column":1,"line":43,"offset":770}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:4641\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:14:09.446Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:16.010Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:16.077Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:16.675Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:14:16.780Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:14:17.815Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":139,"timestamp":"2024-11-22T12:14:18.270Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:14:19.568Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bcc120} at example.wlk:-- exhausted all cases without a match [Return]{bcc120} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bcc120} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:14:21.697Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:14:21.802Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:21.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:21.866Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b22267} at example.wlk:-- exhausted all cases without a match [Return]{b22267} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b22267} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:14:21.965Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:14:22.077Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:14:22.181Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:14:22.369Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:14:26.832Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:26.832Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:14:27.019Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"609d2777-137e-4650-8f68-5c5db2b2e2c8","members":[{"id":"16c7cc6d-5fc0-4dd5-bb9b-99ee533d256f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e8861f-7b84-44aa-91f3-c50bdd35b64a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"5880ca74-cd63-4108-8280-04c0838f2913","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c8e59392-3213-42a0-8751-be25b014e910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"1ccf6992-08a1-4aaf-83b9-6a02fd475633","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"ca89df82-5644-4052-92cc-276ec3eb7fc6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07d0dea3-e7e4-466e-84a6-5020865371fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"957bccd0-86ab-46a7-8baa-075c1e38f21b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f30bfb07-7378-4133-9d24-2e35811f2528","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"935f32ae-7a50-4cb5-a357-ce0a6416ce6a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":44,"offset":848},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":851},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:14:34.771Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"609d2777-137e-4650-8f68-5c5db2b2e2c8","members":[{"id":"16c7cc6d-5fc0-4dd5-bb9b-99ee533d256f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e8861f-7b84-44aa-91f3-c50bdd35b64a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"5880ca74-cd63-4108-8280-04c0838f2913","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c8e59392-3213-42a0-8751-be25b014e910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"1ccf6992-08a1-4aaf-83b9-6a02fd475633","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"ca89df82-5644-4052-92cc-276ec3eb7fc6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07d0dea3-e7e4-466e-84a6-5020865371fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"957bccd0-86ab-46a7-8baa-075c1e38f21b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f30bfb07-7378-4133-9d24-2e35811f2528","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"935f32ae-7a50-4cb5-a357-ce0a6416ce6a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":44,"offset":848},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":851},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:14:35.040Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"609d2777-137e-4650-8f68-5c5db2b2e2c8","members":[{"id":"16c7cc6d-5fc0-4dd5-bb9b-99ee533d256f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e8861f-7b84-44aa-91f3-c50bdd35b64a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"5880ca74-cd63-4108-8280-04c0838f2913","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c8e59392-3213-42a0-8751-be25b014e910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"1ccf6992-08a1-4aaf-83b9-6a02fd475633","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"ca89df82-5644-4052-92cc-276ec3eb7fc6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07d0dea3-e7e4-466e-84a6-5020865371fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"957bccd0-86ab-46a7-8baa-075c1e38f21b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f30bfb07-7378-4133-9d24-2e35811f2528","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"935f32ae-7a50-4cb5-a357-ce0a6416ce6a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":44,"offset":848},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":851},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:14:35.818Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"609d2777-137e-4650-8f68-5c5db2b2e2c8","members":[{"id":"16c7cc6d-5fc0-4dd5-bb9b-99ee533d256f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e8861f-7b84-44aa-91f3-c50bdd35b64a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"5880ca74-cd63-4108-8280-04c0838f2913","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c8e59392-3213-42a0-8751-be25b014e910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"1ccf6992-08a1-4aaf-83b9-6a02fd475633","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"ca89df82-5644-4052-92cc-276ec3eb7fc6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07d0dea3-e7e4-466e-84a6-5020865371fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"957bccd0-86ab-46a7-8baa-075c1e38f21b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f30bfb07-7378-4133-9d24-2e35811f2528","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"935f32ae-7a50-4cb5-a357-ce0a6416ce6a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":44,"offset":848},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":851},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:14:36.137Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"609d2777-137e-4650-8f68-5c5db2b2e2c8","members":[{"id":"16c7cc6d-5fc0-4dd5-bb9b-99ee533d256f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e8861f-7b84-44aa-91f3-c50bdd35b64a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"5880ca74-cd63-4108-8280-04c0838f2913","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c8e59392-3213-42a0-8751-be25b014e910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"1ccf6992-08a1-4aaf-83b9-6a02fd475633","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"ca89df82-5644-4052-92cc-276ec3eb7fc6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07d0dea3-e7e4-466e-84a6-5020865371fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"957bccd0-86ab-46a7-8baa-075c1e38f21b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f30bfb07-7378-4133-9d24-2e35811f2528","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"935f32ae-7a50-4cb5-a357-ce0a6416ce6a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":44,"offset":848},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":851},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:14:37.351Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"609d2777-137e-4650-8f68-5c5db2b2e2c8","members":[{"id":"16c7cc6d-5fc0-4dd5-bb9b-99ee533d256f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e8861f-7b84-44aa-91f3-c50bdd35b64a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"5880ca74-cd63-4108-8280-04c0838f2913","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c8e59392-3213-42a0-8751-be25b014e910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"1ccf6992-08a1-4aaf-83b9-6a02fd475633","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"ca89df82-5644-4052-92cc-276ec3eb7fc6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07d0dea3-e7e4-466e-84a6-5020865371fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"957bccd0-86ab-46a7-8baa-075c1e38f21b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"f30bfb07-7378-4133-9d24-2e35811f2528","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"935f32ae-7a50-4cb5-a357-ce0a6416ce6a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":51,"line":44,"offset":848},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":851},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:14:38.736Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:14:40.660Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:14:41.348Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:41.349Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:41.461Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:14:41.563Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:41.629Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:14:41.730Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:14:41.898Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:14:42.157Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:14:44.339Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:44.339Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:14:49.372Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:49.372Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:14:50.227Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:50.573Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:14:51.697Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:14:51.858Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:14:52.536Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:53.543Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:53.740Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:14:54.267Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.Persona.pemociones [Field]{a9c036} at example.wlk:4 exhausted all cases without a match example.Persona.pemociones [Field]{a9c036} at example.wlk:4 exhausted all cases without a match","stack":"Error: example.Persona.pemociones [Field]{a9c036} at example.wlk:4 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:15:10.691Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:15:10.783Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:15:10.867Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:15:10.982Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:15:11.051Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":134,"timestamp":"2024-11-22T12:15:11.185Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:15:11.758Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:15:11.869Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":165,"timestamp":"2024-11-22T12:15:17.831Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"4f04c9f5-bcef-4b96-9852-7866270247ba","members":[{"id":"4d2c0532-d720-4260-86f9-20e94bea5dea","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"9a0746f5-dd37-4e4c-a9e5-15958cb0b78e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"337eb269-fcc1-446d-8d0f-928dc21d3512","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"71d675e7-0c97-49ab-bda6-2a3b6ef1e7c6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"8fa5b57d-aaf5-406f-8deb-ca0048c1d698","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":103},"start":{"column":40,"line":7,"offset":101}},"value":12},{"id":"4f54a597-ce0d-446f-bf5b-ee2b4a14e2a9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":107},"start":{"column":44,"line":7,"offset":105}},"value":19}],"id":"30ec0e5b-f0af-4b36-971e-d625934d7090","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"24b4c863-55de-490e-9508-389ccb54a5ba","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":92},"start":{"column":27,"line":7,"offset":88}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":108},"start":{"column":27,"line":7,"offset":88}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":115},"start":{"column":27,"line":7,"offset":88}}},"id":"94d803d1-b6c2-453f-ab98-6f41c0330a04","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":115},"start":{"column":3,"line":7,"offset":64}}},{"body":{"id":"1eb8bc5c-b006-49a1-a960-2a3ee25982a2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0e7e0287-6fe0-4bdf-a342-683e24539800","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"5d5f2cd3-69e8-4df7-a516-3cfe4d2932fc","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":173},"start":{"column":50,"line":10,"offset":166}}}],"id":"12b9dfff-c90d-4b9d-8e42-3ce03e054144","message":"add","metadata":[],"receiver":{"id":"573272f8-dcae-4422-9968-ded95fb1c793","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":161},"start":{"column":36,"line":10,"offset":152}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":174},"start":{"column":36,"line":10,"offset":152}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":174},"start":{"column":36,"line":10,"offset":152}}},"id":"d28bdc95-ba07-4617-9413-4922838ded4c","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"cf0656e7-0762-432c-bb32-b834a458114e","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":148},"start":{"column":25,"line":10,"offset":141}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":174},"start":{"column":3,"line":10,"offset":119}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":22,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":34}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":180},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:15:21.258Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:15:21.692Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"dab1648f-e4dd-4a92-ab85-7ae0de777519","members":[{"id":"38a8b18a-dae5-4bd0-acfe-08253d050c07","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"62f99a3b-014a-4b8a-9dd3-36130d524f5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"9247a502-0926-4f6d-b5d8-dd6037bc80f6","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"04f84e08-f3c7-493f-9f17-33f1f850e28a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"424be359-0c07-472d-85e3-f61edb318d58","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"d6c83972-f10f-4e9e-9476-111a171e0de4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"87ddedbf-383d-4500-b79a-f5a60f66b3dd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cd269e2b-e187-4e95-bba9-3f35d5f465dc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"7db71cbb-bf44-46d5-b0f0-52fa4689059d","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"84abf493-e7e6-40e4-a017-63557a66c877","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":1,"line":45,"offset":890},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":891},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:15:39.619Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | liberarEmociones(persona) = personas.emociones.filter}\n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | liberarEmociones(persona) = personas.emociones.filter}\n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:15:39.772Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:15:43.432Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:15:43.976Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:15:44.217Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:15:49.792Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:15:49.937Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:15:49.938Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:15:50.136Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:15:50.283Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":146,"timestamp":"2024-11-22T12:15:50.490Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:15:50.594Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:15:51.152Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:15:51.263Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:15:52.554Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:15:55.322Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T12:15:56.451Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:15:56.858Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:16:17.123Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:16:18.587Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:16:18.932Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:16:19.052Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:16:19.462Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:16:19.649Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:16:20.130Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":144,"timestamp":"2024-11-22T12:16:20.666Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:16:21.212Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.213Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.269Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:16:21.382Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.461Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.631Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 11 | \n 12 | method\n> 13 | }\n | ^\n 14 | \n 15 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 11 | \n 12 | method\n> 13 | }\n | ^\n 14 | \n 15 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:16:21.632Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.638Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:16:21.761Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 11 | \n 12 | method \n> 13 | }\n | ^\n 14 | \n 15 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 11 | \n 12 | method \n> 13 | }\n | ^\n 14 | \n 15 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:16:21.775Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.776Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:16:21.880Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:21.946Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:22.232Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:22.300Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:22.363Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:16:22.477Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:22.547Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:22.699Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:16:22.821Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:22.895Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:16:23.016Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:23.075Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:16:23.196Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:23.277Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:16:23.810Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T12:16:23.930Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:16:24.160Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:16:24.434Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":144,"timestamp":"2024-11-22T12:16:24.578Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:16:24.862Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:16:25.288Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{ebb9e8} at example.wlk:-- exhausted all cases without a match [Return]{ebb9e8} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{ebb9e8} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:28.687Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:28.780Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T12:16:29.238Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:16:29.553Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{4dbaf3} at example.wlk:-- exhausted all cases without a match [Return]{4dbaf3} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{4dbaf3} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:30.741Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:30.839Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:30.915Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:16:31.024Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:16:31.446Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:16:31.640Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:16:31.836Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:16:32.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:32.482Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:35.414Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:35.516Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:35.529Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:35.547Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d9af3b} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:36.039Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:36.044Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":165,"timestamp":"2024-11-22T12:16:37.633Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:37.633Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:37.709Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:37.785Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:16:37.895Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:16:38.560Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:16:38.666Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:16:41.482Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:16:43.139Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{db033d} at example.wlk:-- exhausted all cases without a match [Return]{db033d} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{db033d} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:43.693Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:16:43.799Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:43.799Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{ce801b} at example.wlk:-- exhausted all cases without a match [Return]{ce801b} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{ce801b} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:16:44.703Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:44.800Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:45.394Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:45.508Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:16:45.614Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T12:16:45.788Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:45.789Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:45.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:16:46.199Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"6148c197-fbe1-4388-9e7b-38272c179851","members":[{"id":"bfc8666b-3ff5-413a-b4cf-ac3b10f76520","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":3,"line":42,"offset":821}},"value":{"id":"8495b2d8-b5b8-4231-8aa6-c69c1a265195","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":22,"line":42,"offset":840}},"value":[{"id":"fa657ae6-4cbf-4a86-86fe-8029b78b313a","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"026391f7-1fa4-4be5-a6c0-c6e1fc785beb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":843},"start":{"column":23,"line":42,"offset":841}},"value":""}]]}},{"id":"3bb81119-eccc-4e30-874b-7e7691ad6202","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":43,"offset":870},"start":{"column":3,"line":43,"offset":848}},"value":{"id":"1013de31-401e-4b50-8d48-385924f5e64f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"2b1193b1-0df8-4e76-b78b-fb7664660916","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"854f31f8-5c6c-435f-ba2d-010256d36034","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"846c090b-ae18-4b96-91a5-2f843be6a1ac","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"aa482d62-853c-4938-9045-57aa57bc5e8d","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":71,"line":45,"offset":944},"start":{"column":3,"line":45,"offset":876}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":46,"offset":947},"start":{"column":1,"line":41,"offset":804}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:16:50.579Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:16:52.170Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:16:52.538Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:16:52.708Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":143,"timestamp":"2024-11-22T12:16:53.105Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:16:58.564Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ae168f2b-3309-4c69-a831-349bf10fdfc3","members":[{"id":"486aacdf-bf0f-40d0-b720-510fd9e7263c","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":3,"line":42,"offset":821}},"value":{"id":"47257df6-c608-4fc2-8795-1bceca79c712","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":22,"line":42,"offset":840}},"value":[{"id":"f9c643ab-b2b0-4420-8a0c-ed115f5e1880","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c90bce9c-9f6d-4ea6-b4de-1cb6ce81b77b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":843},"start":{"column":23,"line":42,"offset":841}},"value":""}]]}},{"id":"8e0fdb94-b356-41b5-9ce0-3221753a8e49","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":43,"offset":870},"start":{"column":3,"line":43,"offset":848}},"value":{"id":"c39d38e9-5dd2-442e-b985-a1e532c8eadc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"b2452e1c-5675-463d-bd1f-0023f1d90efc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"74aa3fd5-401b-4f00-aedf-8623d09bbb68","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"87708763-ef50-4527-b867-f9b326cdb2c8","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"fc00115d-4da8-4705-ab5f-1875e050796d","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":60,"line":45,"offset":933},"start":{"column":3,"line":45,"offset":876}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":46,"offset":936},"start":{"column":1,"line":41,"offset":804}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:01.971Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ae168f2b-3309-4c69-a831-349bf10fdfc3","members":[{"id":"486aacdf-bf0f-40d0-b720-510fd9e7263c","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":3,"line":42,"offset":821}},"value":{"id":"47257df6-c608-4fc2-8795-1bceca79c712","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":22,"line":42,"offset":840}},"value":[{"id":"f9c643ab-b2b0-4420-8a0c-ed115f5e1880","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c90bce9c-9f6d-4ea6-b4de-1cb6ce81b77b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":843},"start":{"column":23,"line":42,"offset":841}},"value":""}]]}},{"id":"8e0fdb94-b356-41b5-9ce0-3221753a8e49","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":43,"offset":870},"start":{"column":3,"line":43,"offset":848}},"value":{"id":"c39d38e9-5dd2-442e-b985-a1e532c8eadc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"b2452e1c-5675-463d-bd1f-0023f1d90efc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"74aa3fd5-401b-4f00-aedf-8623d09bbb68","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"87708763-ef50-4527-b867-f9b326cdb2c8","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"fc00115d-4da8-4705-ab5f-1875e050796d","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":60,"line":45,"offset":933},"start":{"column":3,"line":45,"offset":876}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":46,"offset":936},"start":{"column":1,"line":41,"offset":804}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:03.020Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ae168f2b-3309-4c69-a831-349bf10fdfc3","members":[{"id":"486aacdf-bf0f-40d0-b720-510fd9e7263c","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":3,"line":42,"offset":821}},"value":{"id":"47257df6-c608-4fc2-8795-1bceca79c712","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":22,"line":42,"offset":840}},"value":[{"id":"f9c643ab-b2b0-4420-8a0c-ed115f5e1880","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c90bce9c-9f6d-4ea6-b4de-1cb6ce81b77b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":843},"start":{"column":23,"line":42,"offset":841}},"value":""}]]}},{"id":"8e0fdb94-b356-41b5-9ce0-3221753a8e49","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":43,"offset":870},"start":{"column":3,"line":43,"offset":848}},"value":{"id":"c39d38e9-5dd2-442e-b985-a1e532c8eadc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"b2452e1c-5675-463d-bd1f-0023f1d90efc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"74aa3fd5-401b-4f00-aedf-8623d09bbb68","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"87708763-ef50-4527-b867-f9b326cdb2c8","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"fc00115d-4da8-4705-ab5f-1875e050796d","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":60,"line":45,"offset":933},"start":{"column":3,"line":45,"offset":876}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":46,"offset":936},"start":{"column":1,"line":41,"offset":804}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:04.984Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ae168f2b-3309-4c69-a831-349bf10fdfc3","members":[{"id":"486aacdf-bf0f-40d0-b720-510fd9e7263c","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":3,"line":42,"offset":821}},"value":{"id":"47257df6-c608-4fc2-8795-1bceca79c712","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":42,"offset":844},"start":{"column":22,"line":42,"offset":840}},"value":[{"id":"f9c643ab-b2b0-4420-8a0c-ed115f5e1880","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c90bce9c-9f6d-4ea6-b4de-1cb6ce81b77b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":843},"start":{"column":23,"line":42,"offset":841}},"value":""}]]}},{"id":"8e0fdb94-b356-41b5-9ce0-3221753a8e49","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":43,"offset":870},"start":{"column":3,"line":43,"offset":848}},"value":{"id":"c39d38e9-5dd2-442e-b985-a1e532c8eadc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"b2452e1c-5675-463d-bd1f-0023f1d90efc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"74aa3fd5-401b-4f00-aedf-8623d09bbb68","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"87708763-ef50-4527-b867-f9b326cdb2c8","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"fc00115d-4da8-4705-ab5f-1875e050796d","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":60,"line":45,"offset":933},"start":{"column":3,"line":45,"offset":876}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":46,"offset":936},"start":{"column":1,"line":41,"offset":804}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:08.007Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:17:10.978Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:17:11.153Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:24.846Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T12:17:24.987Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:24.987Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:17:25.095Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:25.157Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:17:25.258Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:25.261Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:17:25.268Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:25.268Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:17:25.388Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:25.462Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:17:25.800Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eit [Variable]{90c105} at example.wlk:48 exhausted all cases without a match example.eit [Variable]{90c105} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eit [Variable]{90c105} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:25.880Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eita [Variable]{8f323c} at example.wlk:48 exhausted all cases without a match example.eita [Variable]{8f323c} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eita [Variable]{8f323c} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:26.091Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:17:26.202Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{f278ba} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{f278ba} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{f278ba} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:26.286Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:17:26.717Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{467282} at example.wlk:48 exhausted all cases without a match example.eitan [Variable]{467282} at example.wlk:48 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{467282} at example.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:17:28.628Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:17:28.735Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:28.736Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:28.810Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:17:28.989Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:17:29.266Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:17:29.952Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:17:30.285Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:17:30.631Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:17:31.753Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:17:32.022Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:17:41.707Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:17:42.560Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:17:42.673Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:17:43.271Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T12:17:46.741Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:17:48.736Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:17:50.333Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:17:50.438Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":140,"timestamp":"2024-11-22T12:17:50.729Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:17:51.266Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:52.282Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:52.372Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":148,"timestamp":"2024-11-22T12:17:52.520Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T12:17:52.631Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:52.631Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:52.716Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:17:52.823Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:17:52.925Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:52.995Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:53.056Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:53.124Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:17:53.226Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:17:53.420Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.em [Variable]{1c6aae} at example.wlk:47 exhausted all cases without a match example.em [Variable]{1c6aae} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.em [Variable]{1c6aae} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:53.514Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:17:53.615Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emoc [Variable]{3820a2} at example.wlk:47 exhausted all cases without a match example.emoc [Variable]{3820a2} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.emoc [Variable]{3820a2} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:53.796Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:17:54.065Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocio [Variable]{83e869} at example.wlk:47 exhausted all cases without a match example.emocio [Variable]{83e869} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.emocio [Variable]{83e869} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:54.164Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:17:54.413Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:17:54.535Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:17:54.643Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocion1 [Variable]{823bcc} at example.wlk:47 exhausted all cases without a match example.emocion1 [Variable]{823bcc} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.emocion1 [Variable]{823bcc} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:17:55.058Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:17:55.710Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocion1 [Variable]{fc585f} at example.wlk:47 exhausted all cases without a match example.emocion1 [Variable]{fc585f} at example.wlk:47 exhausted all cases without a match","stack":"Error: example.emocion1 [Variable]{fc585f} at example.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:17:56.470Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:17:56.582Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:17:56.690Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:17:56.690Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":133,"timestamp":"2024-11-22T12:17:56.966Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:17:57.095Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:17:57.544Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:17:57.657Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:17:57.761Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:17:58.295Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:18:00.090Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:18:00.258Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:18:00.520Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:18:00.634Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T12:18:00.766Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:18:00.885Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T12:18:01.484Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":145,"timestamp":"2024-11-22T12:18:01.698Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:18:01.823Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:18:02.013Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:18:02.214Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:18:02.700Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:18:02.874Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:18:03.106Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:18:03.207Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:18:07.285Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:18:09.118Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"66b7a915-141f-484c-9973-2dd12e30f9a7","imports":[],"members":[{"id":"5cecd622-40c5-47ac-ba4d-6e4a0e8a388f","members":[{"id":"a4e50bc4-d578-4411-afff-e297fed5faaf","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"ada5d228-40a9-4c9b-9519-43163054b0d4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"cdc6af35-53f2-4702-a04c-6388de3057aa","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"f95325d6-1954-4e14-9703-37c3b615d825","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"fb90c266-1467-4258-b727-de22085188e7","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"33caa4f4-19d5-414e-a524-76980eeece98","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9fa20f50-2ca3-4b3b-837c-27e613aae369","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"dcb13723-f33b-4e56-a10d-55c67b1aac06","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"cfba30fb-f076-4943-b3eb-ae88c1b3590d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"e34bcee1-b8b2-43a6-882f-78706d6e9938","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"8f8b9030-053e-41f2-96f3-909cdb2471a0","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"08a07905-11f9-450b-9ac1-1e64966a11b9","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"f831c224-f164-468b-81e6-bd48b1e306fa","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"80d69d63-de25-4d80-bbcc-7ec3e01e2deb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"29aac90a-9fb0-47c9-a4db-062942b0cf7c","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"629ec878-399b-4f31-bf33-b30038e89bb3","message":"add","metadata":[],"receiver":{"id":"b7dd0411-edd9-496e-8492-0908be5aabb0","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"fac9e5eb-170a-4976-8ce9-d4094850e6b9","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"6fabab23-91cc-4f64-b4a0-3b2dc4e73c4f","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"9937b411-df23-4fd5-a84e-ff0ceeb82cb8","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4ca8a918-0406-47b8-9a25-f1a2742cb45a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"5f436cdb-c9e4-4aea-aee5-98d4bcac5ddb","members":[{"body":{"id":"1fbab285-05db-4446-a5f1-031a25c00d9c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"700a707e-08cf-4969-af3b-fc9e713c5d60","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"17f341a8-32a1-4543-8301-61ca4a517292","message":"puedeLiberarse","metadata":[],"receiver":{"id":"f4c4d7e6-f821-44e4-817f-af777df0e7de","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"1f840237-3323-4f94-bc2f-3a7f82850d4e","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"0002e959-0bd6-485a-8c1d-6a9f2c967504","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"1a968b17-0e0f-4c73-a6a3-206cfb503026","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"5d1d72a1-a31c-4877-a093-1e43bcb7ebb0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"61a5efb0-12ca-49eb-9140-f14d4cf8d1df","metadata":[],"reference":{"id":"0d4bbdfc-6cec-49ac-8658-5006c5aaf9bc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"3a5362c7-ab9d-4db1-bdc2-db099d58470a","message":"filter","metadata":[],"receiver":{"id":"7f9222ce-e2c9-45d6-96b2-4b71472c6ba9","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"124a1ccb-a557-472b-87a7-7340b7a27a85","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"97ffe35f-3f50-49b8-ba84-19ae36005d48","members":[{"id":"349cb492-75ba-4e0b-a8dd-a211352fa7d1","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"555da495-4603-45f3-84db-82fa0e68129d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"c209f42e-46ce-4b05-a949-f39dadd6e0ee","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f2e3e2bd-f464-4103-bc81-dd8d1d5f5538","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6459ebf5-a0cc-4b77-9295-e4664e5c698a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"8a1d69d5-a8bf-48fe-91f7-440603d11841","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"6f57a581-99f4-4c23-8093-32ee856fa1aa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bcaa0762-9583-440a-9f28-eb5bd140f5f3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"13d57602-0a6d-4eb6-a7c9-bce6305c7244","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"d13d400f-ed7f-4b4c-89f4-b0141e53d8cc","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"5b0b221a-e454-4a0d-8c91-0692004ff929","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3832ac2b-dedc-48f5-8f1d-a6fbb7a0dd51","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"0afdd4b0-cf95-4d18-9945-aafcd7ab23ae","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"04f9646c-58b9-4337-8c9b-692696525500","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"ac54b3b9-f3dc-49ce-86d7-4a2d46b46324","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"aaa054d5-87eb-4c7b-981d-8427a2f6cf1b","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"41db4bec-afd5-444d-a5d9-4d455eb48f5e","members":[{"id":"3ae2dd1b-d545-4d6c-b0da-a1010ae6a249","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"eb0d1e26-86aa-49c5-9634-178df1f32512","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"6749894a-d1ed-48ee-837c-2f772a9a551e","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"59bb54c9-e33c-4bac-8952-9d26efb16e80","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"69787dfa-1545-4cb2-a38c-37a5dab0586b","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"1853a12b-bc00-483b-a0f9-9dbf6c461b65","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e37b1df4-b49d-432b-86d2-50647e4761fd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"dd122778-bd5c-4761-a1ad-fcc1a5f1265b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"53e0d467-b496-4ad1-9045-0163c56321d3","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"a1d702b1-0f14-42b1-9d56-c591384fbb62","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"0890ebfa-489e-4ace-a9df-8c59141e5127","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":47,"offset":969},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[],"id":"de754a34-6ce8-4bba-a391-d9ac9f2efbec","instantiated":{"id":"3123f733-6f84-4587-9f02-eef36a4e3096","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":47,"offset":969},"start":{"column":17,"line":47,"offset":956}}}},{"id":"83d3bc54-08cf-4706-a30f-6a79a019e77d","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":987},"start":{"column":1,"line":48,"offset":971}},"value":{"id":"f8eec305-a445-422b-9884-2ce8a735f727","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":987},"start":{"column":14,"line":48,"offset":984}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":55,"line":48,"offset":1025},"start":{"column":18,"line":48,"offset":988}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:18:16.307Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":135,"timestamp":"2024-11-22T12:18:19.221Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:18:31.502Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":130,"timestamp":"2024-11-22T12:18:31.771Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:18:32.530Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":130,"timestamp":"2024-11-22T12:18:32.661Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:18:32.886Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:18:34.162Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:18:34.453Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:18:35.109Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"91255848-9860-4fa6-8d86-0177972e53ad","imports":[],"members":[{"id":"c7a7ae57-937e-4636-a5fc-d9ffc324a43c","members":[{"id":"703fcf86-0e67-4244-8c55-df2c63f0e359","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"973abd33-af4f-48ce-ac2f-41e939f7ee9f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"1fcd848f-2bc9-47a2-91a7-fea718b10702","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"b525afa8-7938-4f08-ad3f-ba55a7762c26","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"53f96fa6-0edb-4ddd-ab57-48ba58d16e2f","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"f192040c-7f82-4d41-a5d4-36f68aba24c9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ef46f51a-71f8-490e-b538-de09660a6a1b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"74bce2fe-95f9-49bc-b758-b5f47075b90b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"29bd93ba-5591-491a-9900-6a34f9afaacf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"36db8a8d-95ca-4a6e-814b-10469af6feef","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"2bdfd6b0-58e0-4576-8a8b-8bd877565242","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"737a6fb1-b119-4a16-895e-df2ac5220ddf","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"5a686442-e273-4414-ae53-ba85375f8862","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8137216e-b1e5-40f4-be4b-1d2099a83faa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"aeb6bf6c-00c1-48e9-84d1-44ea713305cf","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"0eb65657-c240-465e-a08e-fd5c0aa2de76","message":"add","metadata":[],"receiver":{"id":"bf7c1fe9-06d2-4421-93a1-647be01cbf48","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"066d4ee6-919d-439a-a491-85041fb23d5d","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"0924ec13-8a70-45b3-8d5e-8cbf293cb24f","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"2b41b5c5-b8ef-4d72-abb7-9bc8bc5c0079","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9db878fa-1a08-4f5f-a087-ad51fb611dd1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9be447d7-b43a-40ea-a9ed-e840285478dc","members":[{"body":{"id":"d46efc60-1d70-4083-ac48-dce2c416895c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5b12b1d0-ae49-4225-aa4d-59f884355ef7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"2d71aa23-3ac3-4430-b5b3-26aaa05c64c3","message":"puedeLiberarse","metadata":[],"receiver":{"id":"b61a5daf-ad50-4e92-824e-2c0e23b91bbc","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"3a739881-d9e7-4299-a465-61aca11a5e9a","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"bfc2cac2-9b10-4981-8968-60100e9963cc","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"2b3d456e-06d9-437c-a926-14b4cb7caa5f","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"87c27da3-c91e-44fd-af2e-07756a217ec3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"a6d415ed-21f9-44e7-8f9a-1c9acb309a37","metadata":[],"reference":{"id":"59d0780a-220d-4c6d-8a7d-18aa191dd90e","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"c455d38b-0cf0-4eba-a0a8-b98e3a954363","message":"filter","metadata":[],"receiver":{"id":"a9d065a6-a7bb-4843-9e2e-b3444fcb24d4","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"1cf9df38-8074-4312-a8d5-faf6936327e1","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"2796ef41-1836-4f3d-9cff-8df15d290ab3","members":[{"id":"c564555e-aba4-4aed-b846-d43bf5582cc9","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"3006196d-3db3-44bd-bedf-2bad6442b217","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e5dbf196-6ca9-4c9e-8f2a-f42f53ecea73","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c491b06a-15b5-4313-b4f1-dfe15e5e9dfe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"21e173c4-3b43-49e7-9d3c-4ce324e7a381","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"a85bd4db-c5f3-4295-9e76-8762fe01c626","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"41517d8c-f1dd-4e05-bfd3-82a057cf4cce","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"07954ea6-6a1d-4e80-8d11-ce080c2009a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c53f9a70-e364-49e1-95f8-d1d5c5ce4ed5","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"9eb05d7d-612c-4cc7-bce8-6b1fa23e2b0e","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"d707c42e-c6d4-40ce-9381-7ba1ccc9be4a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1bf14bd6-7cb1-4f3a-ab9e-81b1e51838c2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1d8e4484-ad75-4dd6-a626-4cdc3538a0aa","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e8ab8570-6b4c-4e7a-ace9-538fa3594d52","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0bff3252-7777-4dcf-abe4-0e8aad3fdc68","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"7232da4f-e9af-4a63-bc0d-18b455723ee0","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"dabe18b4-0a8b-41e0-8180-07fc0e2e17fa","members":[{"id":"c63a65f8-4d2b-40f6-b862-c4a39b2f5eb1","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"f4e0aaea-6ece-434c-8d00-7e6aab35a8dd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"e0421590-2a46-49de-b889-a5dc12f35418","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"676aff12-21bd-40dd-a81a-e4e84bb341b5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"be2e04e3-a219-4214-8d57-7894db1416ec","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"dd95aeae-b0ce-486f-b499-c76f9a416751","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"9e8f2251-029f-41e9-ac10-ac23f5da3f6b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f4c94ebd-1501-4bcf-92d7-cbc139fa2695","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"727ddddd-daaa-4419-b190-e4dd834225a2","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"05c401da-2ddf-41be-9e3b-369af0c35f03","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"5e33ef92-ffe9-48e2-be5f-20f9f9a03f2a","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"b6a3f3ea-52da-48b7-a9a2-12a3d34efc02","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"667b0730-f4a2-45bf-a566-44e3b0d2c14c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"9d4c19e8-8dbb-4890-990d-de8c5a4d68c3","instantiated":{"id":"7d102f09-b441-4e33-b321-93b4a9ed47f3","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"4c087f75-6927-4fb2-bf6c-2b1c4f77eb7a","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"7eb2be9e-445f-423f-a043-bb3ba738f6d7","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":57,"line":48,"offset":1046},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:18:38.491Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"91255848-9860-4fa6-8d86-0177972e53ad","imports":[],"members":[{"id":"c7a7ae57-937e-4636-a5fc-d9ffc324a43c","members":[{"id":"703fcf86-0e67-4244-8c55-df2c63f0e359","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"973abd33-af4f-48ce-ac2f-41e939f7ee9f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"1fcd848f-2bc9-47a2-91a7-fea718b10702","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"b525afa8-7938-4f08-ad3f-ba55a7762c26","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"53f96fa6-0edb-4ddd-ab57-48ba58d16e2f","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"f192040c-7f82-4d41-a5d4-36f68aba24c9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ef46f51a-71f8-490e-b538-de09660a6a1b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"74bce2fe-95f9-49bc-b758-b5f47075b90b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"29bd93ba-5591-491a-9900-6a34f9afaacf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"36db8a8d-95ca-4a6e-814b-10469af6feef","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"2bdfd6b0-58e0-4576-8a8b-8bd877565242","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"737a6fb1-b119-4a16-895e-df2ac5220ddf","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"5a686442-e273-4414-ae53-ba85375f8862","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8137216e-b1e5-40f4-be4b-1d2099a83faa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"aeb6bf6c-00c1-48e9-84d1-44ea713305cf","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"0eb65657-c240-465e-a08e-fd5c0aa2de76","message":"add","metadata":[],"receiver":{"id":"bf7c1fe9-06d2-4421-93a1-647be01cbf48","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"066d4ee6-919d-439a-a491-85041fb23d5d","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"0924ec13-8a70-45b3-8d5e-8cbf293cb24f","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"2b41b5c5-b8ef-4d72-abb7-9bc8bc5c0079","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9db878fa-1a08-4f5f-a087-ad51fb611dd1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9be447d7-b43a-40ea-a9ed-e840285478dc","members":[{"body":{"id":"d46efc60-1d70-4083-ac48-dce2c416895c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5b12b1d0-ae49-4225-aa4d-59f884355ef7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"2d71aa23-3ac3-4430-b5b3-26aaa05c64c3","message":"puedeLiberarse","metadata":[],"receiver":{"id":"b61a5daf-ad50-4e92-824e-2c0e23b91bbc","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"3a739881-d9e7-4299-a465-61aca11a5e9a","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"bfc2cac2-9b10-4981-8968-60100e9963cc","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"2b3d456e-06d9-437c-a926-14b4cb7caa5f","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"87c27da3-c91e-44fd-af2e-07756a217ec3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"a6d415ed-21f9-44e7-8f9a-1c9acb309a37","metadata":[],"reference":{"id":"59d0780a-220d-4c6d-8a7d-18aa191dd90e","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"c455d38b-0cf0-4eba-a0a8-b98e3a954363","message":"filter","metadata":[],"receiver":{"id":"a9d065a6-a7bb-4843-9e2e-b3444fcb24d4","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"1cf9df38-8074-4312-a8d5-faf6936327e1","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"2796ef41-1836-4f3d-9cff-8df15d290ab3","members":[{"id":"c564555e-aba4-4aed-b846-d43bf5582cc9","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"3006196d-3db3-44bd-bedf-2bad6442b217","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e5dbf196-6ca9-4c9e-8f2a-f42f53ecea73","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c491b06a-15b5-4313-b4f1-dfe15e5e9dfe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"21e173c4-3b43-49e7-9d3c-4ce324e7a381","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"a85bd4db-c5f3-4295-9e76-8762fe01c626","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"41517d8c-f1dd-4e05-bfd3-82a057cf4cce","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"07954ea6-6a1d-4e80-8d11-ce080c2009a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c53f9a70-e364-49e1-95f8-d1d5c5ce4ed5","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"9eb05d7d-612c-4cc7-bce8-6b1fa23e2b0e","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"d707c42e-c6d4-40ce-9381-7ba1ccc9be4a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1bf14bd6-7cb1-4f3a-ab9e-81b1e51838c2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1d8e4484-ad75-4dd6-a626-4cdc3538a0aa","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e8ab8570-6b4c-4e7a-ace9-538fa3594d52","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0bff3252-7777-4dcf-abe4-0e8aad3fdc68","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"7232da4f-e9af-4a63-bc0d-18b455723ee0","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"dabe18b4-0a8b-41e0-8180-07fc0e2e17fa","members":[{"id":"c63a65f8-4d2b-40f6-b862-c4a39b2f5eb1","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"f4e0aaea-6ece-434c-8d00-7e6aab35a8dd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"e0421590-2a46-49de-b889-a5dc12f35418","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"676aff12-21bd-40dd-a81a-e4e84bb341b5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"be2e04e3-a219-4214-8d57-7894db1416ec","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"dd95aeae-b0ce-486f-b499-c76f9a416751","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"9e8f2251-029f-41e9-ac10-ac23f5da3f6b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f4c94ebd-1501-4bcf-92d7-cbc139fa2695","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"727ddddd-daaa-4419-b190-e4dd834225a2","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"05c401da-2ddf-41be-9e3b-369af0c35f03","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"5e33ef92-ffe9-48e2-be5f-20f9f9a03f2a","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"b6a3f3ea-52da-48b7-a9a2-12a3d34efc02","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"667b0730-f4a2-45bf-a566-44e3b0d2c14c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"9d4c19e8-8dbb-4890-990d-de8c5a4d68c3","instantiated":{"id":"7d102f09-b441-4e33-b321-93b4a9ed47f3","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"4c087f75-6927-4fb2-bf6c-2b1c4f77eb7a","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"7eb2be9e-445f-423f-a043-bb3ba738f6d7","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":57,"line":48,"offset":1046},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:18:38.844Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:18:39.905Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"f5793b87-a255-49f5-8632-2b563facd8a2","imports":[],"members":[{"id":"bffd13e9-b72e-4290-b14f-9a13887e63b6","members":[{"id":"4e0833bc-868d-4e39-8129-a09c38bcddbb","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"b91bf32d-1a9e-4843-a59e-3643e5b0fa2a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"74452487-5381-477e-ab33-b7b7bebb3067","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"692f9e61-7100-457a-b700-09272a3a7042","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"146d4be6-e7f3-494c-b5fb-9e8a88bc9f72","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"203f3d0c-1bef-4cd0-b453-e06c50b3969c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc0c8b23-184f-4a45-8dd7-853b4099d207","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e36fef9a-9adc-49d5-9e51-e87bcda57f5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"7c208011-9e01-46e2-aefc-bd2a139e5066","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"16938fd9-d1ec-4081-9398-3a8fcb087842","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"bb63d07f-c0f2-4bde-b843-460dd7177f80","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"12ad80fe-1ccb-4f22-a5ae-61e267c466ba","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"4223611a-f0e8-4fd7-860c-b854fda951b6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"85653f8b-dc43-4688-8484-7955ceceda47","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ac371461-8027-4c56-84c0-bf9bcb5b1416","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"2f0f307f-8d5e-458e-944f-593e562f8cf5","message":"add","metadata":[],"receiver":{"id":"4707839b-1afa-46ae-8ea4-ccf3ab9b0601","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"99a6254b-48f9-4ca3-b175-866942ed22af","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"598a4f56-da12-4431-851c-5a348acd1c79","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"380635b2-6610-479b-9665-70aa6e6b408e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9b7a60a6-ad5e-4138-bb54-34acd972cdcf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"6f0c7da5-2ecd-499c-a271-18d51ef27e2a","members":[{"body":{"id":"408c69a7-fe6b-4b10-a61e-4882ee712156","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9e05feb9-ff6b-41cb-b69e-1bda7763e0a0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"9b41b84f-4e76-43fe-a068-f04b806b685b","message":"puedeLiberarse","metadata":[],"receiver":{"id":"745520ba-3842-4f43-93f4-afaa1649aca5","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"94074e7a-d8cb-42df-bcc0-a4fdb0ec0038","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"4f0e0e59-45e4-4943-bfe8-cf145cfc0ab2","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"aa4a40d3-1f14-4b5a-a88e-527a2f4dc6f2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"55788102-5abe-4144-818b-8579abff97fb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"be09b2ff-a106-4dab-85dd-1c7a6ced3f6c","metadata":[],"reference":{"id":"c2c7681e-cb53-474d-9e03-89a6cceb0e9f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"a40f4fb9-0b48-407a-af5f-12130643d806","message":"filter","metadata":[],"receiver":{"id":"efa5d9bb-8350-45de-94bb-c2f63cbf2408","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"c1de046e-edc9-487b-b2bb-dc0b300f8930","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"e1f7740d-06cc-4508-b294-f5410f716194","members":[{"id":"454a19f4-a66d-42d6-935c-23bdf2fc2752","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"fadcf8c8-7358-4642-85a5-865456a326c8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"72833e8a-cf55-49dc-982a-b16b4ee46afb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"057e328f-8873-4196-8259-8dc5fa1ca17c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ac3512d8-91cf-44f1-a3a0-24ae7d5645f1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"0afa048d-1748-4dee-a5e2-d973140dc180","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"599037e8-c500-4f16-912e-847007e361c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0fca96f9-fe35-45b7-9f14-4f471454605c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"10fd9b4d-2c0e-4b4e-9352-de343060797d","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"744505c5-8dae-42c0-8a28-18c177c798f8","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"15f19e31-1a98-46dd-aeb3-9157d7bb53e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cd3736c3-b429-46a4-bc56-b9938ebf485e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"9249b9f1-bfd3-438c-8074-1845c76b2d26","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"9720b1ce-04d5-4801-9d34-1fba9f6194e7","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2b0ae69b-e0d8-4df9-9553-3cf42d6415bd","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"d23358fd-75a3-4674-9b62-9d61fdcb195e","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"a92a759b-22c5-4aef-94fb-290d185ccbe1","members":[{"id":"37459d36-ace5-4f42-943f-9ccfefa30eaa","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"3dfcd742-1879-4cd7-8e5f-8f3f4bcc6c0f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"8b04a13a-253d-45f2-b8db-de3f14da67a5","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"6567fc9c-8195-44e5-a8c3-48eb9b1dd444","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"02d3c6cc-3049-45bc-9d14-1f34c5c57258","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"884dd814-d9a4-47b9-92b5-3480b8ea1538","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"a58bdb38-e8c9-420f-a9cd-4a6aa3c8a80f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"875b18bb-07de-4898-84d9-62f7e848e03b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"85344b52-36c0-4991-9feb-af026b2deb41","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"31431f16-9201-4bae-b22a-c2eabdf897ab","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"75a9a341-36ec-4bbe-a0c3-d775bcdfa9f0","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"bb8fed62-8a02-455b-9f23-c1319e21dd0d","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"a4d0a381-39d5-446a-bc76-48293317d66a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"d6d5a824-ade7-455c-b8c9-79350adfc920","instantiated":{"id":"d5de099f-95b0-4cb3-8198-f550c170d543","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"16acc629-ced1-42d4-b89f-3ec3437e3d59","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"ce64e5e1-85f3-4e5b-96a5-132e6f848e7b","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":57,"line":48,"offset":1046},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:18:44.136Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"f5793b87-a255-49f5-8632-2b563facd8a2","imports":[],"members":[{"id":"bffd13e9-b72e-4290-b14f-9a13887e63b6","members":[{"id":"4e0833bc-868d-4e39-8129-a09c38bcddbb","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"b91bf32d-1a9e-4843-a59e-3643e5b0fa2a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"74452487-5381-477e-ab33-b7b7bebb3067","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"692f9e61-7100-457a-b700-09272a3a7042","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"146d4be6-e7f3-494c-b5fb-9e8a88bc9f72","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"203f3d0c-1bef-4cd0-b453-e06c50b3969c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc0c8b23-184f-4a45-8dd7-853b4099d207","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e36fef9a-9adc-49d5-9e51-e87bcda57f5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"7c208011-9e01-46e2-aefc-bd2a139e5066","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"16938fd9-d1ec-4081-9398-3a8fcb087842","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"bb63d07f-c0f2-4bde-b843-460dd7177f80","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"12ad80fe-1ccb-4f22-a5ae-61e267c466ba","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"4223611a-f0e8-4fd7-860c-b854fda951b6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"85653f8b-dc43-4688-8484-7955ceceda47","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ac371461-8027-4c56-84c0-bf9bcb5b1416","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"2f0f307f-8d5e-458e-944f-593e562f8cf5","message":"add","metadata":[],"receiver":{"id":"4707839b-1afa-46ae-8ea4-ccf3ab9b0601","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"99a6254b-48f9-4ca3-b175-866942ed22af","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"598a4f56-da12-4431-851c-5a348acd1c79","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"380635b2-6610-479b-9665-70aa6e6b408e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9b7a60a6-ad5e-4138-bb54-34acd972cdcf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"6f0c7da5-2ecd-499c-a271-18d51ef27e2a","members":[{"body":{"id":"408c69a7-fe6b-4b10-a61e-4882ee712156","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9e05feb9-ff6b-41cb-b69e-1bda7763e0a0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"9b41b84f-4e76-43fe-a068-f04b806b685b","message":"puedeLiberarse","metadata":[],"receiver":{"id":"745520ba-3842-4f43-93f4-afaa1649aca5","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"94074e7a-d8cb-42df-bcc0-a4fdb0ec0038","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"4f0e0e59-45e4-4943-bfe8-cf145cfc0ab2","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"aa4a40d3-1f14-4b5a-a88e-527a2f4dc6f2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"55788102-5abe-4144-818b-8579abff97fb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"be09b2ff-a106-4dab-85dd-1c7a6ced3f6c","metadata":[],"reference":{"id":"c2c7681e-cb53-474d-9e03-89a6cceb0e9f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"a40f4fb9-0b48-407a-af5f-12130643d806","message":"filter","metadata":[],"receiver":{"id":"efa5d9bb-8350-45de-94bb-c2f63cbf2408","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"c1de046e-edc9-487b-b2bb-dc0b300f8930","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"e1f7740d-06cc-4508-b294-f5410f716194","members":[{"id":"454a19f4-a66d-42d6-935c-23bdf2fc2752","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"fadcf8c8-7358-4642-85a5-865456a326c8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"72833e8a-cf55-49dc-982a-b16b4ee46afb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"057e328f-8873-4196-8259-8dc5fa1ca17c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ac3512d8-91cf-44f1-a3a0-24ae7d5645f1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"0afa048d-1748-4dee-a5e2-d973140dc180","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"599037e8-c500-4f16-912e-847007e361c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0fca96f9-fe35-45b7-9f14-4f471454605c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"10fd9b4d-2c0e-4b4e-9352-de343060797d","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"744505c5-8dae-42c0-8a28-18c177c798f8","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"15f19e31-1a98-46dd-aeb3-9157d7bb53e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cd3736c3-b429-46a4-bc56-b9938ebf485e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"9249b9f1-bfd3-438c-8074-1845c76b2d26","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"9720b1ce-04d5-4801-9d34-1fba9f6194e7","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2b0ae69b-e0d8-4df9-9553-3cf42d6415bd","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"d23358fd-75a3-4674-9b62-9d61fdcb195e","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"a92a759b-22c5-4aef-94fb-290d185ccbe1","members":[{"id":"37459d36-ace5-4f42-943f-9ccfefa30eaa","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"3dfcd742-1879-4cd7-8e5f-8f3f4bcc6c0f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"8b04a13a-253d-45f2-b8db-de3f14da67a5","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"6567fc9c-8195-44e5-a8c3-48eb9b1dd444","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"02d3c6cc-3049-45bc-9d14-1f34c5c57258","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"884dd814-d9a4-47b9-92b5-3480b8ea1538","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"a58bdb38-e8c9-420f-a9cd-4a6aa3c8a80f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"875b18bb-07de-4898-84d9-62f7e848e03b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"85344b52-36c0-4991-9feb-af026b2deb41","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"31431f16-9201-4bae-b22a-c2eabdf897ab","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"75a9a341-36ec-4bbe-a0c3-d775bcdfa9f0","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"bb8fed62-8a02-455b-9f23-c1319e21dd0d","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"a4d0a381-39d5-446a-bc76-48293317d66a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"d6d5a824-ade7-455c-b8c9-79350adfc920","instantiated":{"id":"d5de099f-95b0-4cb3-8198-f550c170d543","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"16acc629-ced1-42d4-b89f-3ec3437e3d59","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"ce64e5e1-85f3-4e5b-96a5-132e6f848e7b","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":57,"line":48,"offset":1046},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:18:46.804Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"f5793b87-a255-49f5-8632-2b563facd8a2","imports":[],"members":[{"id":"bffd13e9-b72e-4290-b14f-9a13887e63b6","members":[{"id":"4e0833bc-868d-4e39-8129-a09c38bcddbb","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"b91bf32d-1a9e-4843-a59e-3643e5b0fa2a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"74452487-5381-477e-ab33-b7b7bebb3067","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"692f9e61-7100-457a-b700-09272a3a7042","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"146d4be6-e7f3-494c-b5fb-9e8a88bc9f72","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"203f3d0c-1bef-4cd0-b453-e06c50b3969c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc0c8b23-184f-4a45-8dd7-853b4099d207","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e36fef9a-9adc-49d5-9e51-e87bcda57f5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"7c208011-9e01-46e2-aefc-bd2a139e5066","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"16938fd9-d1ec-4081-9398-3a8fcb087842","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"bb63d07f-c0f2-4bde-b843-460dd7177f80","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"12ad80fe-1ccb-4f22-a5ae-61e267c466ba","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"4223611a-f0e8-4fd7-860c-b854fda951b6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"85653f8b-dc43-4688-8484-7955ceceda47","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ac371461-8027-4c56-84c0-bf9bcb5b1416","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"2f0f307f-8d5e-458e-944f-593e562f8cf5","message":"add","metadata":[],"receiver":{"id":"4707839b-1afa-46ae-8ea4-ccf3ab9b0601","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"99a6254b-48f9-4ca3-b175-866942ed22af","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"598a4f56-da12-4431-851c-5a348acd1c79","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"380635b2-6610-479b-9665-70aa6e6b408e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9b7a60a6-ad5e-4138-bb54-34acd972cdcf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"6f0c7da5-2ecd-499c-a271-18d51ef27e2a","members":[{"body":{"id":"408c69a7-fe6b-4b10-a61e-4882ee712156","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9e05feb9-ff6b-41cb-b69e-1bda7763e0a0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"9b41b84f-4e76-43fe-a068-f04b806b685b","message":"puedeLiberarse","metadata":[],"receiver":{"id":"745520ba-3842-4f43-93f4-afaa1649aca5","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"94074e7a-d8cb-42df-bcc0-a4fdb0ec0038","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"4f0e0e59-45e4-4943-bfe8-cf145cfc0ab2","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"aa4a40d3-1f14-4b5a-a88e-527a2f4dc6f2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"55788102-5abe-4144-818b-8579abff97fb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"be09b2ff-a106-4dab-85dd-1c7a6ced3f6c","metadata":[],"reference":{"id":"c2c7681e-cb53-474d-9e03-89a6cceb0e9f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"a40f4fb9-0b48-407a-af5f-12130643d806","message":"filter","metadata":[],"receiver":{"id":"efa5d9bb-8350-45de-94bb-c2f63cbf2408","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"c1de046e-edc9-487b-b2bb-dc0b300f8930","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"e1f7740d-06cc-4508-b294-f5410f716194","members":[{"id":"454a19f4-a66d-42d6-935c-23bdf2fc2752","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"fadcf8c8-7358-4642-85a5-865456a326c8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"72833e8a-cf55-49dc-982a-b16b4ee46afb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"057e328f-8873-4196-8259-8dc5fa1ca17c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ac3512d8-91cf-44f1-a3a0-24ae7d5645f1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"0afa048d-1748-4dee-a5e2-d973140dc180","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"599037e8-c500-4f16-912e-847007e361c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0fca96f9-fe35-45b7-9f14-4f471454605c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"10fd9b4d-2c0e-4b4e-9352-de343060797d","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"744505c5-8dae-42c0-8a28-18c177c798f8","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"15f19e31-1a98-46dd-aeb3-9157d7bb53e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cd3736c3-b429-46a4-bc56-b9938ebf485e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"9249b9f1-bfd3-438c-8074-1845c76b2d26","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"9720b1ce-04d5-4801-9d34-1fba9f6194e7","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2b0ae69b-e0d8-4df9-9553-3cf42d6415bd","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"d23358fd-75a3-4674-9b62-9d61fdcb195e","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"a92a759b-22c5-4aef-94fb-290d185ccbe1","members":[{"id":"37459d36-ace5-4f42-943f-9ccfefa30eaa","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"3dfcd742-1879-4cd7-8e5f-8f3f4bcc6c0f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"8b04a13a-253d-45f2-b8db-de3f14da67a5","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"6567fc9c-8195-44e5-a8c3-48eb9b1dd444","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"02d3c6cc-3049-45bc-9d14-1f34c5c57258","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"884dd814-d9a4-47b9-92b5-3480b8ea1538","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"a58bdb38-e8c9-420f-a9cd-4a6aa3c8a80f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"875b18bb-07de-4898-84d9-62f7e848e03b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"85344b52-36c0-4991-9feb-af026b2deb41","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"31431f16-9201-4bae-b22a-c2eabdf897ab","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"75a9a341-36ec-4bbe-a0c3-d775bcdfa9f0","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"bb8fed62-8a02-455b-9f23-c1319e21dd0d","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"a4d0a381-39d5-446a-bc76-48293317d66a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"d6d5a824-ade7-455c-b8c9-79350adfc920","instantiated":{"id":"d5de099f-95b0-4cb3-8198-f550c170d543","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"16acc629-ced1-42d4-b89f-3ec3437e3d59","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"ce64e5e1-85f3-4e5b-96a5-132e6f848e7b","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":57,"line":48,"offset":1046},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:18:57.669Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T12:19:05.866Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:19:06.604Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":114,"timestamp":"2024-11-22T12:19:06.827Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T12:19:07.059Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T12:19:07.756Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:19:07.882Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T12:19:07.986Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:19:08.792Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T12:19:08.899Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":114,"timestamp":"2024-11-22T12:19:09.385Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T12:19:09.556Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T12:19:09.764Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:19:09.868Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T12:19:11.040Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T12:19:11.147Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":121,"timestamp":"2024-11-22T12:19:11.268Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":119,"timestamp":"2024-11-22T12:19:11.387Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T12:19:11.588Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T12:19:11.760Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T12:19:11.894Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T12:19:12.188Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T12:19:12.494Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"59e82530-33b0-462b-a51e-0854a5ab2215","imports":[],"members":[{"id":"7ae8ab7b-b1bc-4fc1-a65a-e407cb5ff19d","members":[{"id":"6927f9e2-cf2a-4a3d-a53b-f2a321ea864b","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"ee835223-5757-458b-8615-84d05fc5d029","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"9d45a8d0-67e6-4b23-846b-04a91b476f0c","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"4ca4024b-13f6-4821-ae5b-7725e578924d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"6949d35a-8404-47ab-be8a-490c7536a899","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"4e337ad8-9652-473e-b227-e3ed62660273","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2dcd7614-6fc3-49d5-bbe2-95179d69484a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3e5bf433-c97b-4a48-91f0-facfce584dde","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"ed381a83-3910-4330-8ed8-2f5d40c04b6f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"3a1561a2-efd7-480e-b726-530eee80a9bf","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"c69db4c9-de22-4dad-b403-0bfb789a9e93","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"d4bac86c-bd6d-444c-99b4-66fc5a82afab","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"3841447c-67f9-434e-aca5-76c285729eeb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1f582ce0-67f8-4c11-a0df-dfc5bb8b56c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"cf2226f8-392e-4b25-b621-86a1dfbd5aa4","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"5df0dfeb-b2ed-426a-8266-163fd424aca9","message":"add","metadata":[],"receiver":{"id":"46388920-1568-4045-a02d-057fb85f3fb5","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"da3a37b7-71c6-4349-89bf-2f883de1826b","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"d2a6df25-42c8-47c7-8279-3ebb55ac961e","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"05e8e325-109b-4c0e-b331-bcf29d8a44cd","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3e7ba455-fcec-476a-a5ed-6319eb2eef64","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"d68c3eb1-563c-47ee-9252-932092776c5b","members":[{"body":{"id":"41c69b2e-66ac-4444-83e3-090006ed6fe6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0b1bd81e-5c28-462f-b53d-d9183250f1bf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"94301ddf-960d-420a-a2a8-4522f573cc00","message":"puedeLiberarse","metadata":[],"receiver":{"id":"e7a98c18-a048-42c0-bbf9-09ab4ddbe25c","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"0b8a8433-ea9c-4d3b-8df7-1131bf4ebf33","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5b2b401f-be67-4788-a0a0-e86246101c8b","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"bb09252d-6956-4d2b-b069-c6076d7d5c12","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"212baf09-c444-43c0-afa4-4c6b0e70e774","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"1ba4bb5c-1a0a-4d26-89e7-c77b63396a4a","metadata":[],"reference":{"id":"b28f5063-8c8d-4206-807b-cede4e88e887","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"b0a51275-711e-40f2-bd33-9aa1ecd1a034","message":"filter","metadata":[],"receiver":{"id":"2443d60c-4a75-42be-830c-9c9c8f015a75","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"9be6d51b-f177-4ed0-9a4b-f4801a06af68","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"10ef06a6-b486-4344-b9a7-149dc6734780","members":[{"id":"a6971a2c-3636-4a37-b7ef-5eb378bb330f","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"c26af57c-5ace-4db2-b870-45bdd4271b34","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"4ac24a8a-465d-492c-92ab-e4f7dac583ee","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b4a46f26-be8e-4db4-8eb4-1fe16fb3d561","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"35efd4fd-3f14-448e-8e70-f198a4151a24","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"2260e3af-2397-4eb7-9495-ece4143c018e","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"b7441090-d889-403b-abb6-9602410db511","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7b13af21-794e-4802-a36a-ad7951124336","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"7b32df52-5793-4c19-b64d-a38b256262c0","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"defcfde1-c950-4be4-a03a-9595d73c58f5","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"75fdc504-598e-467c-ae49-69e8cacb2e42","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b81e9bbd-a7f5-4413-8b67-f487b025eb98","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6eb620cd-07ff-43c6-9882-624d91f0a0fc","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"26f3b69d-57d6-4b69-8173-df9c9a23a210","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"b978d157-33e9-4edf-b075-56fa987d90d9","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"84405647-1dc2-4f37-964d-fb80e5ef592d","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"ceb787ac-27e8-425b-8fa9-e9faf3922dea","members":[{"id":"9e398605-6f04-4473-bd1b-1cee363e4967","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"7a5eaaed-b0f9-47ce-a232-8a3cb5b122b8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"5f604750-df9f-4a04-8c75-5b82663671b5","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c3e8cd83-e0c0-4e61-ba30-bdac7b9c5fb9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"9f600b96-cfc6-495e-9f97-b40f709ce8ad","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"3faaf179-6780-441b-9225-21dfb8205791","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e991b2db-924b-4bf8-aa72-426b68ac0dbc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0ebffbcb-caaf-4d78-861d-7799d17b2953","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"d6b70159-ac43-4a42-8f60-9d32f0e705ec","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"b708fbd7-c809-401a-967c-3c0dc7fd24ef","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"dbcf87a6-4306-406e-8ced-4e186ac603a1","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"20fd3a54-a792-4f06-b739-d54c27f21fc4","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"48402c32-6511-4c47-b2ed-af65c7d45725","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"42df9cb3-448c-4cfb-a72b-71195ac95899","instantiated":{"id":"06f9cf8d-d30c-402e-8762-d05d7cf0f82e","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"e4175745-51c8-490a-a620-bd15b05b3b1a","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"fa7415c8-118e-497b-ba56-f523dfcd9c2d","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":58,"line":48,"offset":1047},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:19:14.670Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"59e82530-33b0-462b-a51e-0854a5ab2215","imports":[],"members":[{"id":"7ae8ab7b-b1bc-4fc1-a65a-e407cb5ff19d","members":[{"id":"6927f9e2-cf2a-4a3d-a53b-f2a321ea864b","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"ee835223-5757-458b-8615-84d05fc5d029","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"9d45a8d0-67e6-4b23-846b-04a91b476f0c","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"4ca4024b-13f6-4821-ae5b-7725e578924d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"6949d35a-8404-47ab-be8a-490c7536a899","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"4e337ad8-9652-473e-b227-e3ed62660273","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2dcd7614-6fc3-49d5-bbe2-95179d69484a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3e5bf433-c97b-4a48-91f0-facfce584dde","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"ed381a83-3910-4330-8ed8-2f5d40c04b6f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"3a1561a2-efd7-480e-b726-530eee80a9bf","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"c69db4c9-de22-4dad-b403-0bfb789a9e93","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"d4bac86c-bd6d-444c-99b4-66fc5a82afab","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"3841447c-67f9-434e-aca5-76c285729eeb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1f582ce0-67f8-4c11-a0df-dfc5bb8b56c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"cf2226f8-392e-4b25-b621-86a1dfbd5aa4","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"5df0dfeb-b2ed-426a-8266-163fd424aca9","message":"add","metadata":[],"receiver":{"id":"46388920-1568-4045-a02d-057fb85f3fb5","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"da3a37b7-71c6-4349-89bf-2f883de1826b","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"d2a6df25-42c8-47c7-8279-3ebb55ac961e","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"05e8e325-109b-4c0e-b331-bcf29d8a44cd","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3e7ba455-fcec-476a-a5ed-6319eb2eef64","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"d68c3eb1-563c-47ee-9252-932092776c5b","members":[{"body":{"id":"41c69b2e-66ac-4444-83e3-090006ed6fe6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0b1bd81e-5c28-462f-b53d-d9183250f1bf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"94301ddf-960d-420a-a2a8-4522f573cc00","message":"puedeLiberarse","metadata":[],"receiver":{"id":"e7a98c18-a048-42c0-bbf9-09ab4ddbe25c","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":11,"offset":231},"start":{"column":55,"line":11,"offset":230}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":11,"offset":248},"start":{"column":55,"line":11,"offset":230}}}}]},"id":"0b8a8433-ea9c-4d3b-8df7-1131bf4ebf33","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5b2b401f-be67-4788-a0a0-e86246101c8b","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":11,"offset":228},"start":{"column":52,"line":11,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"bb09252d-6956-4d2b-b069-c6076d7d5c12","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"212baf09-c444-43c0-afa4-4c6b0e70e774","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":11,"offset":249},"start":{"column":51,"line":11,"offset":226}},"supertypes":[{"args":[],"id":"1ba4bb5c-1a0a-4d26-89e7-c77b63396a4a","metadata":[],"reference":{"id":"b28f5063-8c8d-4206-807b-cede4e88e887","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"b0a51275-711e-40f2-bd33-9aa1ecd1a034","message":"filter","metadata":[],"receiver":{"id":"2443d60c-4a75-42be-830c-9c9c8f015a75","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":11,"offset":218},"start":{"column":34,"line":11,"offset":209}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}}}],"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":34,"line":11,"offset":209}}},"id":"9be6d51b-f177-4ed0-9a4b-f4801a06af68","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":11,"offset":250},"start":{"column":3,"line":11,"offset":178}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":12,"offset":253},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"10ef06a6-b486-4344-b9a7-149dc6734780","members":[{"id":"a6971a2c-3636-4a37-b7ef-5eb378bb330f","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":15,"offset":305},"start":{"column":3,"line":15,"offset":275}},"value":{"id":"c26af57c-5ace-4db2-b870-45bdd4271b34","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"4ac24a8a-465d-492c-92ab-e4f7dac583ee","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b4a46f26-be8e-4db4-8eb4-1fe16fb3d561","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"35efd4fd-3f14-448e-8e70-f198a4151a24","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}},"value":true}}],"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":29,"line":17,"offset":337}}},"id":"2260e3af-2397-4eb7-9495-ece4143c018e","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":17,"offset":341},"start":{"column":3,"line":17,"offset":311}}},{"body":{"id":"b7441090-d889-403b-abb6-9602410db511","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7b13af21-794e-4802-a36a-ad7951124336","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"7b32df52-5793-4c19-b64d-a38b256262c0","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"defcfde1-c950-4be4-a03a-9595d73c58f5","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"75fdc504-598e-467c-ae49-69e8cacb2e42","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b81e9bbd-a7f5-4413-8b67-f487b025eb98","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6eb620cd-07ff-43c6-9882-624d91f0a0fc","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"26f3b69d-57d6-4b69-8173-df9c9a23a210","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"b978d157-33e9-4edf-b075-56fa987d90d9","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"84405647-1dc2-4f37-964d-fb80e5ef592d","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"end","text":"//class Furia inherits Emocion{"},"name":"comment"}],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":344},"start":{"column":1,"line":14,"offset":257}},"supertypes":[]},{"id":"ceb787ac-27e8-425b-8fa9-e9faf3922dea","members":[{"id":"9e398605-6f04-4473-bd1b-1cee363e4967","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":3,"line":41,"offset":819}},"value":{"id":"7a5eaaed-b0f9-47ce-a232-8a3cb5b122b8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":838}},"value":[{"id":"5f604750-df9f-4a04-8c75-5b82663671b5","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"c3e8cd83-e0c0-4e61-ba30-bdac7b9c5fb9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":841},"start":{"column":23,"line":41,"offset":839}},"value":""}]]}},{"id":"9f600b96-cfc6-495e-9f97-b40f709ce8ad","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":868},"start":{"column":3,"line":42,"offset":846}},"value":{"id":"3faaf179-6780-441b-9225-21dfb8205791","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e991b2db-924b-4bf8-aa72-426b68ac0dbc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0ebffbcb-caaf-4d78-861d-7799d17b2953","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"d6b70159-ac43-4a42-8f60-9d32f0e705ec","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"b708fbd7-c809-401a-967c-3c0dc7fd24ef","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"},{"args":{"position":"inner","text":"//liberarEmociones(persona) = persona.emocionesLiberables()"},"name":"comment"}],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":936},"start":{"column":1,"line":40,"offset":802}},"supertypes":[]},{"id":"dbcf87a6-4306-406e-8ced-4e186ac603a1","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":1,"line":47,"offset":940}},"value":{"args":[{"id":"20fd3a54-a792-4f06-b739-d54c27f21fc4","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":29,"line":47,"offset":968}},"value":{"id":"48402c32-6511-4c47-b2ed-af65c7d45725","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":47,"offset":987},"start":{"column":47,"line":47,"offset":986}},"value":1}}],"id":"42df9cb3-448c-4cfb-a72b-71195ac95899","instantiated":{"id":"06f9cf8d-d30c-402e-8762-d05d7cf0f82e","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":47,"offset":967},"start":{"column":21,"line":47,"offset":960}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":47,"offset":988},"start":{"column":17,"line":47,"offset":956}}}},{"id":"e4175745-51c8-490a-a620-bd15b05b3b1a","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":1,"line":48,"offset":990}},"value":{"id":"fa7415c8-118e-497b-ba56-f523dfcd9c2d","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":48,"offset":1006},"start":{"column":14,"line":48,"offset":1003}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":58,"line":48,"offset":1047},"start":{"column":18,"line":48,"offset":1007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:19:15.782Z"} diff --git a/log/wollok2.log b/log/wollok2.log new file mode 100644 index 0000000..d8624b9 --- /dev/null +++ b/log/wollok2.log @@ -0,0 +1,1056 @@ +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:19:18.881Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:20:24.002Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:20:24.112Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:20:24.432Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:26.287Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":130,"timestamp":"2024-11-22T12:20:26.675Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:20:26.922Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:20:27.287Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:20:27.414Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:27.416Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:27.500Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:20:27.603Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:27.604Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":138,"timestamp":"2024-11-22T12:20:27.742Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:27.804Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:20:27.919Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:28.007Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:20:28.118Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:28.179Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:20:28.282Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:28.344Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:20:28.445Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:28.548Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":166,"timestamp":"2024-11-22T12:20:31.650Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:31.650Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:20:31.971Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:31.971Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:20:32.074Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":132,"timestamp":"2024-11-22T12:20:32.769Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:20:33.008Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:20:33.166Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":156,"timestamp":"2024-11-22T12:20:34.022Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:20:34.761Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:20:34.938Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:20:35.097Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:20:35.337Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:20:35.991Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"06639f84-b3c5-4060-845f-e10648bfc22a","members":[{"id":"98f9de74-90ce-44a6-9fc3-aaf540ab2e06","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"febb794b-c3c4-4ca2-9429-ad6b266e880b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"9ae1053e-9183-4106-a75a-f918906a543e","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"dd3bd6f2-b559-4d4d-95a3-260b4a3fdd08","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"3518ecfd-a411-4dfc-b536-9c8ce5a63338","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d61f7da0-2680-4c08-8e72-cbc9fddde733","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"fdddc948-ba99-454a-87f7-d461c10477fb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"70bbaa8f-e8f2-406c-a1d7-2ec4cdce03c6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"38f6c7da-06e2-41f3-b7d4-acb3e76b5773","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"f717362d-95ce-41ee-8ed4-c2314d8a0fd5","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"8973fa4f-e76c-4359-b5b7-784fb1f0fb9d","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"55908afc-7507-4ad3-98aa-24da5dfdc426","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"4d645de7-0400-42fb-9219-caad4f5baefe","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9f88e5cf-6897-4527-aba6-d4be6a5c3376","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"a3f50595-63a8-4bc8-9f5b-68e3875714b7","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"d425c9b6-e6bb-429c-b2a7-4d285e0eb149","message":"add","metadata":[],"receiver":{"id":"5115f79c-6ecd-49eb-8c04-028f19e6f7fb","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"c8d88374-5657-4ae2-9261-3d069466ee59","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"3eb0d4d6-7b4d-4580-ad6d-28be1ffd6cb2","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"8ba4a9c6-ddeb-4258-b7cf-510483863d06","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c2baf77b-cb86-452a-9544-46dda6b8c283","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6b1fabc0-d165-46b3-8714-caa126145afd","metadata":[],"name":"method","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":14,"offset":220},"start":{"column":3,"line":14,"offset":214}}}}],"sourceMap":{"end":{"column":9,"line":14,"offset":220},"start":{"column":3,"line":14,"offset":214}}},"id":"c482016f-39f5-4922-aa06-797da81689e0","isOverride":false,"metadata":[],"name":"emocionesActuales","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":9,"line":14,"offset":220},"start":{"column":3,"line":12,"offset":180}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":75,"line":14,"offset":286},"start":{"column":10,"line":14,"offset":221}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":289},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:20:44.651Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{680310} at example.wlk:12 exhausted all cases without a match [Parameter]{680310} at example.wlk:12 exhausted all cases without a match","stack":"Error: [Parameter]{680310} at example.wlk:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:20:46.474Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:20:46.651Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:46.651Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:20:46.758Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":130,"timestamp":"2024-11-22T12:20:46.974Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:20:48.778Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:20:49.176Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:20:49.337Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:49.556Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:20:49.672Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":144,"timestamp":"2024-11-22T12:20:49.873Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":161,"timestamp":"2024-11-22T12:20:51.726Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:20:51.940Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{58b87e} at example.wlk:-- exhausted all cases without a match [Return]{58b87e} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{58b87e} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:20:52.003Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:52.163Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:52.222Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:52.418Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:20:52.527Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:52.588Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:20:52.692Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:52.761Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:52.919Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:20:53.022Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:53.083Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:20:53.285Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:20:53.285Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:21:02.497Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:21:02.667Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:21:11.421Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:21:11.606Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:21:11.715Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":136,"timestamp":"2024-11-22T12:21:11.952Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:21:12.080Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:21:12.183Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:21:14.044Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:21:14.368Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:21:15.802Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:21:16.049Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ca2cae4b-d3bb-4b78-8822-c24b0518def5","members":[{"id":"105f8466-bad1-40ff-9ccf-7ece54cc121f","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":888},"start":{"column":3,"line":44,"offset":865}},"value":{"id":"d663cd70-3363-4dc0-8226-f571138401b4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":888},"start":{"column":22,"line":44,"offset":884}},"value":[{"id":"549eba2f-9ab4-430a-880e-5940a7f73880","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"3ba74e1c-e34d-49da-85da-e81784a35edb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":44,"offset":887},"start":{"column":23,"line":44,"offset":885}},"value":""}]]}},{"id":"3b24987e-10fd-4bf9-947c-5100c823226b","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":45,"offset":914},"start":{"column":3,"line":45,"offset":892}},"value":{"id":"d13f57a5-2bce-4cd2-ac42-476cf85b51d5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"2df36d74-a175-48f5-aec1-b5fa0affdd3c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"367cebf1-642a-4530-852a-7843fc36727c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"4dfa756d-4f85-48cc-be49-55494579c61f","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"1854aa0f-f438-4cd4-abaf-0cdba96d9bd8","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":79,"line":47,"offset":996},"start":{"column":3,"line":47,"offset":920}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":999},"start":{"column":1,"line":43,"offset":848}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:22:14.662Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:22:17.458Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:22:18.396Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"930262e2-42fc-48db-bd86-9fc1b44bfa6c","members":[{"id":"e28a549f-1531-403f-9c1f-55f686dd5e09","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":888},"start":{"column":3,"line":44,"offset":865}},"value":{"id":"4d667ff3-9da7-4e32-9ad7-2e57225ffce0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":888},"start":{"column":22,"line":44,"offset":884}},"value":[{"id":"ab212a07-0c85-414a-b9c0-54d4b5ef5b9b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"b9f60e57-700c-4c2a-bf25-8c7b24a1e1f5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":44,"offset":887},"start":{"column":23,"line":44,"offset":885}},"value":""}]]}},{"id":"f2af2177-76f8-417d-bdad-a7dc1845bcaa","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":45,"offset":914},"start":{"column":3,"line":45,"offset":892}},"value":{"id":"7ab0107d-a83c-4b3d-a1a9-750dce25bb8d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"c0dca523-9485-4539-ad79-65d614e63458","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c801effe-96e4-4866-a10c-053fab07361e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"8fc99496-6004-403b-b55c-cdd35bf1d113","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"292cce59-c0ef-4483-babc-9ba728b79556","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":79,"line":47,"offset":996},"start":{"column":3,"line":47,"offset":920}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":999},"start":{"column":1,"line":43,"offset":848}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:22:19.200Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"930262e2-42fc-48db-bd86-9fc1b44bfa6c","members":[{"id":"e28a549f-1531-403f-9c1f-55f686dd5e09","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":888},"start":{"column":3,"line":44,"offset":865}},"value":{"id":"4d667ff3-9da7-4e32-9ad7-2e57225ffce0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":44,"offset":888},"start":{"column":22,"line":44,"offset":884}},"value":[{"id":"ab212a07-0c85-414a-b9c0-54d4b5ef5b9b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"b9f60e57-700c-4c2a-bf25-8c7b24a1e1f5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":44,"offset":887},"start":{"column":23,"line":44,"offset":885}},"value":""}]]}},{"id":"f2af2177-76f8-417d-bdad-a7dc1845bcaa","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":45,"offset":914},"start":{"column":3,"line":45,"offset":892}},"value":{"id":"7ab0107d-a83c-4b3d-a1a9-750dce25bb8d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"c0dca523-9485-4539-ad79-65d614e63458","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c801effe-96e4-4866-a10c-053fab07361e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"8fc99496-6004-403b-b55c-cdd35bf1d113","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"292cce59-c0ef-4483-babc-9ba728b79556","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":79,"line":47,"offset":996},"start":{"column":3,"line":47,"offset":920}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":999},"start":{"column":1,"line":43,"offset":848}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:22:21.762Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:22:23.218Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:22:23.652Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":140,"timestamp":"2024-11-22T12:22:23.808Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:22:25.677Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:22:26.098Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:22:28.217Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":131,"timestamp":"2024-11-22T12:22:30.481Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T12:22:30.763Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:22:31.381Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:22:32.560Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:22:46.468Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T12:22:48.060Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:22:48.321Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:22:48.384Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:22:51.913Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:22:52.248Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:22:52.349Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:22:53.283Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:22:58.260Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{ba48d1} at example.wlk:13 exhausted all cases without a match [Parameter]{ba48d1} at example.wlk:13 exhausted all cases without a match","stack":"Error: [Parameter]{ba48d1} at example.wlk:13 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:22:59.552Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:22:59.647Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{ee7071} at example.wlk:13 exhausted all cases without a match [Parameter]{ee7071} at example.wlk:13 exhausted all cases without a match","stack":"Error: [Parameter]{ee7071} at example.wlk:13 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:22:59.722Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{725bb3} at example.wlk:13 exhausted all cases without a match [Parameter]{725bb3} at example.wlk:13 exhausted all cases without a match","stack":"Error: [Parameter]{725bb3} at example.wlk:13 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:22:59.964Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:23:00.091Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:23:00.192Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{bf47ab} at example.wlk:13 exhausted all cases without a match [Parameter]{bf47ab} at example.wlk:13 exhausted all cases without a match","stack":"Error: [Parameter]{bf47ab} at example.wlk:13 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:23:00.347Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:00.521Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{8f9e84} at example.wlk:-- exhausted all cases without a match [Return]{8f9e84} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{8f9e84} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:23:10.137Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:10.330Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:10.392Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:10.547Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:10.699Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:10.841Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:10.988Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:11.134Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:11.287Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:23:11.815Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":158,"timestamp":"2024-11-22T12:23:12.031Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:23:12.807Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:23:12.988Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:23:13.364Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":139,"timestamp":"2024-11-22T12:23:13.555Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":161,"timestamp":"2024-11-22T12:23:14.264Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":162,"timestamp":"2024-11-22T12:23:14.454Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T12:23:15.169Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":193,"timestamp":"2024-11-22T12:23:15.370Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:15.370Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T12:23:15.504Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:15.504Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:15.584Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":146,"timestamp":"2024-11-22T12:23:15.730Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:15.813Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:15.973Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:16.121Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"d4c2e77c-3c2c-4edc-bdca-c64103340d88","members":[{"id":"930df4c2-162c-4430-9c7f-ea4fb8913560","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"edde3eee-3237-45c6-bfef-f9774e3c9eca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"d618f003-844c-4050-b643-35b152be7078","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"a840bbb1-a97b-4de4-92e3-6b830510b869","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":17,"line":4,"offset":48}},"value":[{"id":"810c9f5d-7ddb-47b4-bbad-f883ec3f8f86","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d4f18014-d353-4042-abb4-7f2547a26968","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b17c4ec1-2e33-498d-8440-6b6ca8f81cf8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"793c6675-7673-4d70-b151-801218c91b71","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":100},"start":{"column":40,"line":7,"offset":98}},"value":12},{"id":"f8b1edd9-d6ba-4016-bb56-109905a6dd29","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":104},"start":{"column":44,"line":7,"offset":102}},"value":19}],"id":"74ffa89e-e800-4382-8344-2edc780f9831","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"de4f598d-ee2c-41bb-8e2c-b1d443606ffe","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":89},"start":{"column":27,"line":7,"offset":85}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":105},"start":{"column":27,"line":7,"offset":85}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":27,"line":7,"offset":85}}},"id":"e8928781-b772-4a05-b0e7-1c0fa047bcad","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":3,"line":7,"offset":61}}},{"body":{"id":"7c293888-88dc-4ef7-846e-e51c92ea797a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2df1072c-2139-49a7-ae8e-b04f6e17aacd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1b40303f-8842-43ee-90c9-319ffca208f6","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":170},"start":{"column":50,"line":10,"offset":163}}}],"id":"07ff8e0f-405d-4d40-9aed-9f1c76d11190","message":"add","metadata":[],"receiver":{"id":"2a97e635-0a89-4047-9303-2a9d249a16bd","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":158},"start":{"column":36,"line":10,"offset":149}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}},"id":"35b128cb-2852-4cdf-8a10-e333fe3ba48b","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"ad0b65f7-099e-48cb-9b01-df8c557065a3","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":145},"start":{"column":25,"line":10,"offset":138}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":3,"line":10,"offset":116}}},{"body":{"id":"2be018af-8a48-4f78-b468-711c5cd5a4d0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"74aa35b8-fc36-4835-840a-f6da53d8e918","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"439d0b01-bc50-49ef-a19e-ac17e415f6ff","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}},"id":"19ce977d-96ca-41c1-89a6-82d88bf5e809","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"65604723-c19b-42f2-9374-1fa82df44afd","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":205},"start":{"column":22,"line":13,"offset":199}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":13,"offset":180}}},{"body":{"id":"2504879d-bbd6-42ec-aa41-748adfce4681","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"96602f57-8845-4b2f-b3d5-ead7bf0c9acd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3530b6e3-bfdb-49ed-8c95-3c039ae9e5d3","members":[{"body":{"id":"045c59c4-488a-4373-a466-66bfea293986","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"904008eb-b06f-4c9a-b8ac-46e864002ac9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"67bb3f1a-93b4-48bd-978b-b8dbb9c47df4","message":"puedeLiberarse","metadata":[],"receiver":{"id":"9f41eb0c-3646-4e47-9c84-2d1f547cd788","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":15,"offset":302},"start":{"column":55,"line":15,"offset":301}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":15,"offset":319},"start":{"column":55,"line":15,"offset":301}}}}]},"id":"4d1ed056-17a2-4df8-a00e-b89ecc29514a","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5fd2406c-5eb6-4d15-abaa-ffd7d391bc17","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":15,"offset":299},"start":{"column":52,"line":15,"offset":298}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"f92e5f07-9020-41ff-9c0f-88f9021a49fa","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"7e3c2c3c-72d0-4516-879c-780a8258937e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":15,"offset":320},"start":{"column":51,"line":15,"offset":297}},"supertypes":[{"args":[],"id":"abe0d2b3-b1a3-435a-90af-b8f664c5c538","metadata":[],"reference":{"id":"6aaa7517-41db-4bf7-9af6-7a29a5a430fc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"f39977e7-52fc-4098-867d-69ca0488b859","message":"filter","metadata":[],"receiver":{"id":"dbdaaea9-3d39-4aa6-baae-f2a4d864806b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":15,"offset":289},"start":{"column":34,"line":15,"offset":280}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":321},"start":{"column":34,"line":15,"offset":280}}}}],"sourceMap":{"end":{"column":75,"line":15,"offset":321},"start":{"column":34,"line":15,"offset":280}}},"id":"96537f99-1b9d-447b-8af1-5fd2735454da","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":321},"start":{"column":3,"line":15,"offset":249}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":35,"line":14,"offset":245},"start":{"column":13,"line":14,"offset":223}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":16,"offset":324},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:23:22.593Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"d4c2e77c-3c2c-4edc-bdca-c64103340d88","members":[{"id":"930df4c2-162c-4430-9c7f-ea4fb8913560","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"edde3eee-3237-45c6-bfef-f9774e3c9eca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"d618f003-844c-4050-b643-35b152be7078","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"a840bbb1-a97b-4de4-92e3-6b830510b869","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":17,"line":4,"offset":48}},"value":[{"id":"810c9f5d-7ddb-47b4-bbad-f883ec3f8f86","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d4f18014-d353-4042-abb4-7f2547a26968","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b17c4ec1-2e33-498d-8440-6b6ca8f81cf8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"793c6675-7673-4d70-b151-801218c91b71","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":100},"start":{"column":40,"line":7,"offset":98}},"value":12},{"id":"f8b1edd9-d6ba-4016-bb56-109905a6dd29","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":104},"start":{"column":44,"line":7,"offset":102}},"value":19}],"id":"74ffa89e-e800-4382-8344-2edc780f9831","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"de4f598d-ee2c-41bb-8e2c-b1d443606ffe","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":89},"start":{"column":27,"line":7,"offset":85}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":105},"start":{"column":27,"line":7,"offset":85}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":27,"line":7,"offset":85}}},"id":"e8928781-b772-4a05-b0e7-1c0fa047bcad","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":3,"line":7,"offset":61}}},{"body":{"id":"7c293888-88dc-4ef7-846e-e51c92ea797a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2df1072c-2139-49a7-ae8e-b04f6e17aacd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1b40303f-8842-43ee-90c9-319ffca208f6","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":170},"start":{"column":50,"line":10,"offset":163}}}],"id":"07ff8e0f-405d-4d40-9aed-9f1c76d11190","message":"add","metadata":[],"receiver":{"id":"2a97e635-0a89-4047-9303-2a9d249a16bd","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":158},"start":{"column":36,"line":10,"offset":149}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}},"id":"35b128cb-2852-4cdf-8a10-e333fe3ba48b","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"ad0b65f7-099e-48cb-9b01-df8c557065a3","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":145},"start":{"column":25,"line":10,"offset":138}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":3,"line":10,"offset":116}}},{"body":{"id":"2be018af-8a48-4f78-b468-711c5cd5a4d0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"74aa35b8-fc36-4835-840a-f6da53d8e918","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"439d0b01-bc50-49ef-a19e-ac17e415f6ff","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}},"id":"19ce977d-96ca-41c1-89a6-82d88bf5e809","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"65604723-c19b-42f2-9374-1fa82df44afd","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":205},"start":{"column":22,"line":13,"offset":199}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":13,"offset":180}}},{"body":{"id":"2504879d-bbd6-42ec-aa41-748adfce4681","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"96602f57-8845-4b2f-b3d5-ead7bf0c9acd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3530b6e3-bfdb-49ed-8c95-3c039ae9e5d3","members":[{"body":{"id":"045c59c4-488a-4373-a466-66bfea293986","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"904008eb-b06f-4c9a-b8ac-46e864002ac9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"67bb3f1a-93b4-48bd-978b-b8dbb9c47df4","message":"puedeLiberarse","metadata":[],"receiver":{"id":"9f41eb0c-3646-4e47-9c84-2d1f547cd788","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":15,"offset":302},"start":{"column":55,"line":15,"offset":301}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":15,"offset":319},"start":{"column":55,"line":15,"offset":301}}}}]},"id":"4d1ed056-17a2-4df8-a00e-b89ecc29514a","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5fd2406c-5eb6-4d15-abaa-ffd7d391bc17","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":15,"offset":299},"start":{"column":52,"line":15,"offset":298}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"f92e5f07-9020-41ff-9c0f-88f9021a49fa","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"7e3c2c3c-72d0-4516-879c-780a8258937e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":15,"offset":320},"start":{"column":51,"line":15,"offset":297}},"supertypes":[{"args":[],"id":"abe0d2b3-b1a3-435a-90af-b8f664c5c538","metadata":[],"reference":{"id":"6aaa7517-41db-4bf7-9af6-7a29a5a430fc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"f39977e7-52fc-4098-867d-69ca0488b859","message":"filter","metadata":[],"receiver":{"id":"dbdaaea9-3d39-4aa6-baae-f2a4d864806b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":15,"offset":289},"start":{"column":34,"line":15,"offset":280}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":321},"start":{"column":34,"line":15,"offset":280}}}}],"sourceMap":{"end":{"column":75,"line":15,"offset":321},"start":{"column":34,"line":15,"offset":280}}},"id":"96537f99-1b9d-447b-8af1-5fd2735454da","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":321},"start":{"column":3,"line":15,"offset":249}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":35,"line":14,"offset":245},"start":{"column":13,"line":14,"offset":223}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":16,"offset":324},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:23:24.112Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:24.693Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:23:26.552Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":251,"timestamp":"2024-11-22T12:23:27.937Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:23:29.882Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"7f0e53de-4c61-4e4e-88cf-95490f93f6f7","members":[{"id":"0211d2e6-9cc7-45fa-bcd0-162f9d8320e5","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"13b6092d-b40e-4bdf-8978-003b4708fe61","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"d2058365-a56c-4d56-a097-69a95ceac724","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"10450d71-d589-4677-a3b7-4c156e252b11","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":17,"line":4,"offset":48}},"value":[{"id":"0978f4e5-9f14-428f-90be-009b1e38c898","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"6c8dd3aa-1330-497b-9284-4a2f1ac45e86","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"55ce1799-2f95-4717-b76b-864874b451d4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"7829b10e-98e6-4874-8e46-2ce074bb4755","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":100},"start":{"column":40,"line":7,"offset":98}},"value":12},{"id":"0e363280-6f5a-4387-a4ea-89bc4289a3be","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":104},"start":{"column":44,"line":7,"offset":102}},"value":19}],"id":"f212f0ec-f5c0-401b-a9f5-1ffe05c8afaa","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"2580b524-4333-4d56-91aa-f38891981bc4","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":89},"start":{"column":27,"line":7,"offset":85}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":105},"start":{"column":27,"line":7,"offset":85}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":27,"line":7,"offset":85}}},"id":"ffde1a60-3179-4f0c-82e3-bf180cba9d75","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":3,"line":7,"offset":61}}},{"body":{"id":"d72bd7c5-9019-4bb5-984e-a941aa146b26","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d81ba636-59a6-4f32-9555-336b0befed9f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"c995d434-6aa1-45ac-b148-6d01bbf9df76","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":170},"start":{"column":50,"line":10,"offset":163}}}],"id":"6ce71eec-c491-447b-8e46-5af70d5bec53","message":"add","metadata":[],"receiver":{"id":"4f3fbdec-76d2-4280-8ba2-ab23f3da948e","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":158},"start":{"column":36,"line":10,"offset":149}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}},"id":"c4739ba2-9cdf-4863-a664-0699a7ed8b16","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"78a5359e-5348-4d39-8827-754d67fd4ac6","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":145},"start":{"column":25,"line":10,"offset":138}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":3,"line":10,"offset":116}}},{"body":{"id":"0b7830a2-a5f8-4462-a54e-02cd86d263c3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3f85876e-ac47-4c7b-ade5-af50bd482ce1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"21c8fd39-b1c6-4c79-b112-248f291a44e2","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}},"id":"8f122289-85f2-46b9-9d0e-c69cd3182b65","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"741a44f4-0f2c-4f86-9415-fcc658bc8080","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":205},"start":{"column":22,"line":13,"offset":199}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":13,"offset":180}}},{"body":{"id":"38e44fa2-76b6-4b38-8d67-89a3b975be1b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"69bee015-2cec-4052-bb12-63bd0093665e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"a9e7b23b-d8fd-4fb8-986b-4fcb00ac96f1","members":[{"body":{"id":"5924128b-d02c-4813-b134-2cced7e70837","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9a06eaa9-b48d-42d3-8faa-c337293aa634","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"9e743fe3-5ca8-4377-be77-49fe93ea6ae6","message":"puedeLiberarse","metadata":[],"receiver":{"id":"25cfa4b5-86ff-4149-b2aa-1be6a15333ac","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":15,"offset":303},"start":{"column":55,"line":15,"offset":302}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":15,"offset":320},"start":{"column":55,"line":15,"offset":302}}}}]},"id":"b94923c8-48fb-437f-8783-5c59e93956a7","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"12b01c57-193f-4a82-866a-100afda37775","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":15,"offset":300},"start":{"column":52,"line":15,"offset":299}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"4c319afd-8cab-499b-8d85-b548fb0f24d3","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"2e86cb5f-de39-4ab4-87ae-3deed6ca2c80","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":15,"offset":321},"start":{"column":51,"line":15,"offset":298}},"supertypes":[{"args":[],"id":"f8007c0f-6465-43c1-8188-54eb9e2768e0","metadata":[],"reference":{"id":"4b456df0-7dc0-4245-98aa-7b47c7a4805d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"25da78a4-663f-47d2-8c84-ceabc9c61265","message":"filter","metadata":[],"receiver":{"id":"90766e72-d52c-4789-98c9-fa38ba0cf2c4","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":15,"offset":290},"start":{"column":34,"line":15,"offset":281}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":322},"start":{"column":34,"line":15,"offset":281}}}}],"sourceMap":{"end":{"column":75,"line":15,"offset":322},"start":{"column":34,"line":15,"offset":281}}},"id":"90a05377-6d47-4845-8950-39488eb9ab8c","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":322},"start":{"column":3,"line":15,"offset":250}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":36,"line":14,"offset":246},"start":{"column":13,"line":14,"offset":223}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":16,"offset":325},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:23:33.669Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:23:33.932Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:23:34.048Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":186,"timestamp":"2024-11-22T12:23:34.619Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:23:34.748Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:23:34.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:23:34.856Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"67390e3b-8c18-41ce-977c-8f963f81c022","members":[{"id":"8b0df40e-5fe9-40cf-84ca-de223700abdc","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"56aac80c-e1dc-4572-bbb6-d54e4152dda5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8641ac96-3d79-4022-b735-8b5990bb7214","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"608664d2-472a-4b2a-91d5-f21b88a03243","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":17,"line":4,"offset":48}},"value":[{"id":"b7ca109f-333d-4a5e-8e3c-5abf54e5123e","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"64adcce6-ce27-41ef-8880-951bfaef3140","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"53f89e72-a4a1-44f7-850a-ddfe82f625d4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"384b9d9c-520b-43a5-b13f-ad6d01c5fda4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":100},"start":{"column":40,"line":7,"offset":98}},"value":12},{"id":"4bacb29c-165f-43ec-917c-d6e6eb81d821","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":104},"start":{"column":44,"line":7,"offset":102}},"value":19}],"id":"1f6f8454-cb61-41e4-bb5a-2fe60d27cfe3","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"6afa2d9d-f277-4092-a546-9126a7fc4ffa","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":89},"start":{"column":27,"line":7,"offset":85}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":105},"start":{"column":27,"line":7,"offset":85}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":27,"line":7,"offset":85}}},"id":"b62a7a3c-f1d3-49f3-bd84-e7fb55b2092f","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":3,"line":7,"offset":61}}},{"body":{"id":"8adbc63c-82d3-44af-8266-5ab01d30e878","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0a796089-3dd2-4e7d-8fc2-b2f570265491","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9b70db20-b1e6-4941-9fb9-671ec5a2c96a","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":170},"start":{"column":50,"line":10,"offset":163}}}],"id":"d02f415b-326c-435c-b17c-0176bfb516f0","message":"add","metadata":[],"receiver":{"id":"76db2357-288a-4563-9de8-76c686ca1759","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":158},"start":{"column":36,"line":10,"offset":149}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}},"id":"db943a90-60f9-41f9-882a-292bb287f24e","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"07f00218-d10d-42ce-842b-c0928f5acaf5","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":145},"start":{"column":25,"line":10,"offset":138}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":3,"line":10,"offset":116}}},{"body":{"id":"c3688b0d-c129-4cd0-a216-845d54b38a3e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1608e0f9-5df3-4116-8089-896c2bee5241","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"106c3ecd-013b-4444-a446-33fd0c09738c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}},"id":"9a611c36-98f0-46de-a3c7-5ef5023e7577","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"e22b739d-8efb-4c2b-8398-69afb3abefa0","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":205},"start":{"column":22,"line":13,"offset":199}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":13,"offset":180}}},{"body":{"id":"d7460b1e-5cbf-4b6a-9f5a-66c0f2e77e15","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"41a2c4e3-bc0f-4da3-964a-130aa2ed83e4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f6ababdf-99e1-43a3-9b0e-a4531115ae61","members":[{"body":{"id":"c397320e-e8c7-4743-becf-4671768d573e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c4385f97-d41f-405a-b000-e10ebfe0933b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"7dc72c38-2c1c-4880-b8df-e07777425c26","message":"puedeLiberarse","metadata":[],"receiver":{"id":"49eb579c-684c-4d85-9297-d90f723f4e67","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":15,"offset":308},"start":{"column":55,"line":15,"offset":307}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":15,"offset":325},"start":{"column":55,"line":15,"offset":307}}}}]},"id":"e059826c-ca5b-473b-b16c-7f131091419e","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"37f1cf8b-3e21-435d-ae36-2123f859090b","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":15,"offset":305},"start":{"column":52,"line":15,"offset":304}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"ab911599-3289-4d2a-a93d-be00a1acee59","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c0f960e8-89ff-4aeb-bfb1-b82b3c21b1a6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":15,"offset":326},"start":{"column":51,"line":15,"offset":303}},"supertypes":[{"args":[],"id":"294228c4-7711-4ce0-b174-0214514c44e5","metadata":[],"reference":{"id":"b390d36e-ced7-42e7-8dcc-00c966491974","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"246556f4-7b98-461d-9737-e524982ba428","message":"filter","metadata":[],"receiver":{"id":"b8f03c06-3bd6-4022-983c-9970c6862dc6","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":15,"offset":295},"start":{"column":34,"line":15,"offset":286}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":327},"start":{"column":34,"line":15,"offset":286}}}}],"sourceMap":{"end":{"column":75,"line":15,"offset":327},"start":{"column":34,"line":15,"offset":286}}},"id":"a77f24ad-2a4f-4d6f-bf9f-6b9ff0a6deaa","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":327},"start":{"column":3,"line":15,"offset":255}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":41,"line":14,"offset":251},"start":{"column":13,"line":14,"offset":223}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":16,"offset":330},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:23:36.627Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"67390e3b-8c18-41ce-977c-8f963f81c022","members":[{"id":"8b0df40e-5fe9-40cf-84ca-de223700abdc","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"56aac80c-e1dc-4572-bbb6-d54e4152dda5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8641ac96-3d79-4022-b735-8b5990bb7214","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"608664d2-472a-4b2a-91d5-f21b88a03243","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":4,"offset":50},"start":{"column":17,"line":4,"offset":48}},"value":[{"id":"b7ca109f-333d-4a5e-8e3c-5abf54e5123e","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"64adcce6-ce27-41ef-8880-951bfaef3140","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"53f89e72-a4a1-44f7-850a-ddfe82f625d4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"384b9d9c-520b-43a5-b13f-ad6d01c5fda4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":100},"start":{"column":40,"line":7,"offset":98}},"value":12},{"id":"4bacb29c-165f-43ec-917c-d6e6eb81d821","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":104},"start":{"column":44,"line":7,"offset":102}},"value":19}],"id":"1f6f8454-cb61-41e4-bb5a-2fe60d27cfe3","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"6afa2d9d-f277-4092-a546-9126a7fc4ffa","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":89},"start":{"column":27,"line":7,"offset":85}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":105},"start":{"column":27,"line":7,"offset":85}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":27,"line":7,"offset":85}}},"id":"b62a7a3c-f1d3-49f3-bd84-e7fb55b2092f","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":112},"start":{"column":3,"line":7,"offset":61}}},{"body":{"id":"8adbc63c-82d3-44af-8266-5ab01d30e878","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0a796089-3dd2-4e7d-8fc2-b2f570265491","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9b70db20-b1e6-4941-9fb9-671ec5a2c96a","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":170},"start":{"column":50,"line":10,"offset":163}}}],"id":"d02f415b-326c-435c-b17c-0176bfb516f0","message":"add","metadata":[],"receiver":{"id":"76db2357-288a-4563-9de8-76c686ca1759","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":158},"start":{"column":36,"line":10,"offset":149}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":36,"line":10,"offset":149}}},"id":"db943a90-60f9-41f9-882a-292bb287f24e","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"07f00218-d10d-42ce-842b-c0928f5acaf5","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":145},"start":{"column":25,"line":10,"offset":138}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":171},"start":{"column":3,"line":10,"offset":116}}},{"body":{"id":"c3688b0d-c129-4cd0-a216-845d54b38a3e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1608e0f9-5df3-4116-8089-896c2bee5241","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"106c3ecd-013b-4444-a446-33fd0c09738c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":14,"offset":213}}},"id":"9a611c36-98f0-46de-a3c7-5ef5023e7577","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"e22b739d-8efb-4c2b-8398-69afb3abefa0","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":205},"start":{"column":22,"line":13,"offset":199}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":222},"start":{"column":3,"line":13,"offset":180}}},{"body":{"id":"d7460b1e-5cbf-4b6a-9f5a-66c0f2e77e15","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"41a2c4e3-bc0f-4da3-964a-130aa2ed83e4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f6ababdf-99e1-43a3-9b0e-a4531115ae61","members":[{"body":{"id":"c397320e-e8c7-4743-becf-4671768d573e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c4385f97-d41f-405a-b000-e10ebfe0933b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"7dc72c38-2c1c-4880-b8df-e07777425c26","message":"puedeLiberarse","metadata":[],"receiver":{"id":"49eb579c-684c-4d85-9297-d90f723f4e67","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":15,"offset":308},"start":{"column":55,"line":15,"offset":307}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":15,"offset":325},"start":{"column":55,"line":15,"offset":307}}}}]},"id":"e059826c-ca5b-473b-b16c-7f131091419e","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"37f1cf8b-3e21-435d-ae36-2123f859090b","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":15,"offset":305},"start":{"column":52,"line":15,"offset":304}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"ab911599-3289-4d2a-a93d-be00a1acee59","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c0f960e8-89ff-4aeb-bfb1-b82b3c21b1a6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":15,"offset":326},"start":{"column":51,"line":15,"offset":303}},"supertypes":[{"args":[],"id":"294228c4-7711-4ce0-b174-0214514c44e5","metadata":[],"reference":{"id":"b390d36e-ced7-42e7-8dcc-00c966491974","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"246556f4-7b98-461d-9737-e524982ba428","message":"filter","metadata":[],"receiver":{"id":"b8f03c06-3bd6-4022-983c-9970c6862dc6","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":15,"offset":295},"start":{"column":34,"line":15,"offset":286}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":327},"start":{"column":34,"line":15,"offset":286}}}}],"sourceMap":{"end":{"column":75,"line":15,"offset":327},"start":{"column":34,"line":15,"offset":286}}},"id":"a77f24ad-2a4f-4d6f-bf9f-6b9ff0a6deaa","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":327},"start":{"column":3,"line":15,"offset":255}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":41,"line":14,"offset":251},"start":{"column":13,"line":14,"offset":223}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":16,"offset":330},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:23:38.394Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:24:07.831Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:24:09.852Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"fba0926b-5e7d-4255-a8c2-b42168328c6e","members":[{"id":"6add5a71-b4bd-4953-87df-4df0d53a5b81","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"f74191bb-4564-4a98-9d76-58ae0d40d898","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"883b1da1-b131-46df-8acc-8694d1112ff8","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"66337cf0-3b77-4ad1-b0c3-ec92fd17e535","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"aff8de6c-b5bf-4256-ae0e-a06a7a965eb9","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"c5c185e9-4f3c-4527-9a61-f75cba275734","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"30cc0eb6-c45a-4a69-bd25-e7250b3f587e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1910ab4b-c840-4a24-ad04-816a5f759760","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"d3a56b36-72a7-4317-82e0-fe0c8b5e149a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"53d60dc6-08c5-443d-af73-272ccf86ca55","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"81645c17-a5ef-45f4-a861-01c9f41a6f4c","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"67ae2a55-d558-4d38-9e04-c032dccc757b","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"63c482e1-bcf1-44ea-a154-a340f7e5ccc9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f2df8a05-45da-4c0f-96ef-5be8ee14a962","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"799b37be-28ff-4638-a1c6-f1cd0a10c7da","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"875ae569-d353-4180-b627-dbd4f36007c9","message":"add","metadata":[],"receiver":{"id":"8849965f-a544-4d63-b679-62933514c066","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"385206e0-3c09-4d5a-945f-44b55bb1bdaf","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"0ae9b003-3f8f-404c-b8c0-4c92c435a7da","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"f1ccd1b1-2de1-4a76-bb0e-074592abf8c7","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"abf32c8e-3f55-4d82-b854-89def8c8e860","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"5822b6fc-e4cf-4adf-9cc4-e783ba71bbd1","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}},"id":"a734dbd9-0a06-40a8-922d-f9cd8252abe3","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"fa56d322-da8f-4af4-af50-ff4608352ab8","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":207},"start":{"column":22,"line":13,"offset":201}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":13,"offset":182}}},{"body":{"id":"b1701f08-dff4-4257-b49f-0d26e8872860","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c16de0b4-1237-4561-9b10-b1104a1f4a2e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"54110a6f-20c4-4371-9c1c-d0834e02b61b","members":[{"body":{"id":"f13faa0c-9912-4ccf-8164-fbbe0ea40df8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4268c437-3d4a-4126-bc11-b0405a6f3237","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"a75b3078-8745-46ba-9581-04f262f48955","message":"puedeLiberarse","metadata":[],"receiver":{"id":"6385310f-2d04-4714-8f96-912fcf655bc1","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":15,"offset":310},"start":{"column":55,"line":15,"offset":309}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":73,"line":15,"offset":327},"start":{"column":55,"line":15,"offset":309}}}}]},"id":"17b85173-5bb6-4e6f-a8c3-f43610c3f1a3","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"48148be3-8216-42ff-b34a-529edcf27c0e","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":15,"offset":307},"start":{"column":52,"line":15,"offset":306}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"d7dc45c7-209d-4efd-8f6f-8947170d9477","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"1cf6a838-afcd-435b-a16a-615d66d5bfa6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e=>e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":74,"line":15,"offset":328},"start":{"column":51,"line":15,"offset":305}},"supertypes":[{"args":[],"id":"bbd25755-056a-44b4-8519-7b3c7eba6175","metadata":[],"reference":{"id":"3c535bba-ef41-4b1a-baab-555170eb28fc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"d31507e3-8b66-4aa9-aff3-1f5a0ad5acf9","message":"filter","metadata":[],"receiver":{"id":"89f5a36d-860b-42fb-9c51-734dcffca741","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":15,"offset":297},"start":{"column":34,"line":15,"offset":288}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":329},"start":{"column":34,"line":15,"offset":288}}}}],"sourceMap":{"end":{"column":75,"line":15,"offset":329},"start":{"column":34,"line":15,"offset":288}}},"id":"397d35f5-c4f5-46a3-b1ea-64b193879b49","isOverride":false,"metadata":[],"name":"emocionesLiberables","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":75,"line":15,"offset":329},"start":{"column":3,"line":15,"offset":257}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":41,"line":14,"offset":253},"start":{"column":13,"line":14,"offset":225}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":16,"offset":332},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:24:13.010Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T12:24:24.365Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:24:24.485Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"64edc2f0-6161-44a8-b747-e16c7de6ac75","members":[{"id":"5e3302c2-8fa0-4392-acfa-d267ecfdfb99","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"02ee8670-fce8-4a77-9ab4-f67245bca740","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"303ae15e-802c-457a-b59c-ca46f198f388","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"b392a1a6-e983-4f9e-bac3-fc72fa650924","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"f6d203c0-4ce4-4141-b5e0-1f2d14ecc8f1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"472a55cf-8e05-4b37-a5e7-aeb827163d18","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"36b841f1-f563-4760-91f8-2b440da320b9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"5a37898f-d1c1-42c9-9088-f0840908f82e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"052d12ea-c7f4-4e5c-ba64-013539b85cfb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"78888ec0-c46e-4c88-bb7c-d02239f74a93","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"f7e80b64-92bb-48c1-b3a7-7aa4b1a580bd","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"b3b44d7d-8cb0-428d-834e-fab25268b4c2","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"103009e0-1d01-46ec-8ff2-191a57f54924","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"60c0f7bb-9281-4376-80f8-746a371a7607","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2a4ffb26-c70b-4b94-a4a9-70fb9393a304","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"e4af1a0b-30b8-493c-a013-6e375b54b3e0","message":"add","metadata":[],"receiver":{"id":"cf9cd650-0817-4dd3-8e70-47c39cce1c39","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"451780cb-a86b-4617-94a1-ca9dc722c8a2","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"c8c7611f-44f8-418e-871c-81e11dc20c9a","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"5ef42c0b-16d5-4860-8b3c-e42eb87f5d75","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ba452d0e-6293-436a-8315-1c337d66804f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"33ff2c4e-ddbc-4428-b5b8-b40353d6b784","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}},"id":"1a9cfa6c-5930-44ac-92f6-0cbfe7de28f7","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"e8337802-1efa-47e1-b032-d2c9c9a7dcb2","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":207},"start":{"column":22,"line":13,"offset":201}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":13,"offset":182}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":57,"line":14,"offset":269},"start":{"column":13,"line":14,"offset":225}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":272},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:24:27.210Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:24:32.822Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:24:33.085Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:24:33.488Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:24:47.368Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"44b0a537-d88b-4505-a363-62069ae59338","members":[{"id":"f94be527-6981-4649-91a3-778a7a3ac762","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"52981838-97f6-4b08-8d85-22a96891cb05","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8d8b5f5e-402e-4c04-96db-98389f43ae4a","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"d55e3258-f7cc-4d1d-bbce-aef21aa9d72c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"dbba9097-632a-4e83-9625-d7e59982e8ab","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"38cde9d7-372b-40d7-9c35-ad8215df7376","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"62036493-0d49-4f0d-93b9-7a25f7d03f2e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2c5f6aeb-ce09-4f4b-ba82-35cf2d77be32","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"ef82dd1b-96fa-4091-8303-6b732f049c2f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"9dc4f80c-4b18-4a56-ad2d-2b3731cdce8d","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"0fe718ea-8cc8-424a-a8c9-65632f32887a","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"db8326f6-5a3b-4ca0-8187-ad2441e02196","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"26209fb8-48ef-48f7-95af-6ac992f302b5","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7265add1-aa40-4ff2-9007-c5494447af65","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"92558bbf-fddc-4b33-9f42-9b51eefb6ea3","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"f433998b-fb73-42e0-a633-007aa2deac30","message":"add","metadata":[],"receiver":{"id":"d76ccc12-b5b6-4277-8508-df1b1f6231f8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"087fa06b-3d43-489a-9bf4-161f97450b34","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"1c08ce93-0a1c-42ab-9d33-838e3544e283","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"71db8e40-1e71-4019-b43c-53ac312a255a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6c3e6bbb-9ac6-4718-9dde-ad04a27ace8c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b968d192-54f9-40e3-be27-2f268953d37c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}},"id":"40a7b86c-72b1-44f2-b732-52246926dc15","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"884b0447-70c9-4937-b897-85ef06581d03","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":207},"start":{"column":22,"line":13,"offset":201}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":13,"offset":182}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":56,"line":14,"offset":268},"start":{"column":13,"line":14,"offset":225}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":271},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:24:55.621Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"44b0a537-d88b-4505-a363-62069ae59338","members":[{"id":"f94be527-6981-4649-91a3-778a7a3ac762","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"52981838-97f6-4b08-8d85-22a96891cb05","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8d8b5f5e-402e-4c04-96db-98389f43ae4a","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"d55e3258-f7cc-4d1d-bbce-aef21aa9d72c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"dbba9097-632a-4e83-9625-d7e59982e8ab","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"38cde9d7-372b-40d7-9c35-ad8215df7376","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"62036493-0d49-4f0d-93b9-7a25f7d03f2e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2c5f6aeb-ce09-4f4b-ba82-35cf2d77be32","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"ef82dd1b-96fa-4091-8303-6b732f049c2f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"9dc4f80c-4b18-4a56-ad2d-2b3731cdce8d","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"0fe718ea-8cc8-424a-a8c9-65632f32887a","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"db8326f6-5a3b-4ca0-8187-ad2441e02196","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"26209fb8-48ef-48f7-95af-6ac992f302b5","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7265add1-aa40-4ff2-9007-c5494447af65","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"92558bbf-fddc-4b33-9f42-9b51eefb6ea3","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"f433998b-fb73-42e0-a633-007aa2deac30","message":"add","metadata":[],"receiver":{"id":"d76ccc12-b5b6-4277-8508-df1b1f6231f8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"087fa06b-3d43-489a-9bf4-161f97450b34","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"1c08ce93-0a1c-42ab-9d33-838e3544e283","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"71db8e40-1e71-4019-b43c-53ac312a255a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6c3e6bbb-9ac6-4718-9dde-ad04a27ace8c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b968d192-54f9-40e3-be27-2f268953d37c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}},"id":"40a7b86c-72b1-44f2-b732-52246926dc15","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"884b0447-70c9-4937-b897-85ef06581d03","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":207},"start":{"column":22,"line":13,"offset":201}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":13,"offset":182}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":56,"line":14,"offset":268},"start":{"column":13,"line":14,"offset":225}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":271},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:24:56.053Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:24:56.533Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:24:58.897Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:24:59.063Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"b7291ecc-c62d-4fcc-81a7-386f2577767a","members":[{"id":"eaca34fc-5195-4860-9c59-0826da11d0d6","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e2133e-54aa-429b-830b-ee93e88cbdfd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"ba045bab-1328-4c4d-824f-2a808bcca479","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"ce5c2bc6-6c1b-4921-96b2-4c770edc9a9b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"5511cd9b-2502-4781-bf59-15bcc990fa6d","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"fa4a4ed4-83ef-4a38-aac9-3502bff35941","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"307b7254-590c-4aca-8194-7aa9663b2236","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ec7f296b-9072-40b3-8628-d98048714aee","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c3154073-50c5-436c-9bcc-1cdf21eae1f3","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"c4db603a-11c1-44e7-a1fd-c9bccfc4f267","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":56,"line":44,"offset":853},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":856},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:25:02.904Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"b7291ecc-c62d-4fcc-81a7-386f2577767a","members":[{"id":"eaca34fc-5195-4860-9c59-0826da11d0d6","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":3,"line":41,"offset":745}},"value":{"id":"c2e2133e-54aa-429b-830b-ee93e88cbdfd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":41,"offset":768},"start":{"column":22,"line":41,"offset":764}},"value":[{"id":"ba045bab-1328-4c4d-824f-2a808bcca479","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"ce5c2bc6-6c1b-4921-96b2-4c770edc9a9b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":41,"offset":767},"start":{"column":23,"line":41,"offset":765}},"value":""}]]}},{"id":"5511cd9b-2502-4781-bf59-15bcc990fa6d","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":42,"offset":794},"start":{"column":3,"line":42,"offset":772}},"value":{"id":"fa4a4ed4-83ef-4a38-aac9-3502bff35941","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"307b7254-590c-4aca-8194-7aa9663b2236","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ec7f296b-9072-40b3-8628-d98048714aee","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c3154073-50c5-436c-9bcc-1cdf21eae1f3","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"c4db603a-11c1-44e7-a1fd-c9bccfc4f267","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[{"args":{"position":"start","text":"// const palabrotas = []"},"name":"comment"},{"args":{"position":"start","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"},{"args":{"position":"start","text":"// method tienePalabrota7() = palabrotas.any{p=>p.size()>7}"},"name":"comment"},{"args":{"position":"start","text":"// method intensidadElevada() = true"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//class Alegria inherits Emocion{"},"name":"comment"},{"args":{"position":"start","text":"//const intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"//override method intensidad() = intensidadAlegre"},"name":"comment"},{"args":{"position":"start","text":"// override method liberar(evento) = self.intensidad()"},"name":"comment"},{"args":{"position":"start","text":"//}"},"name":"comment"},{"args":{"position":"start","text":"//"},"name":"comment"}],"name":"Evento","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":56,"line":44,"offset":853},"start":{"column":3,"line":44,"offset":800}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":45,"offset":856},"start":{"column":1,"line":40,"offset":728}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:25:06.428Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:06.631Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 36 | // override method liberar(evento) = self.intensidad()\n 37 | \n> 38 | /}\n | ^\n 39 | \n 40 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 36 | // override method liberar(evento) = self.intensidad()\n 37 | \n> 38 | /}\n | ^\n 39 | \n 40 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:25:10.437Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 36 | // override method liberar(evento) = self.intensidad()\n 37 | \n> 38 | }\n | ^\n 39 | \n 40 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 36 | // override method liberar(evento) = self.intensidad()\n 37 | \n> 38 | }\n | ^\n 39 | \n 40 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:25:10.581Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:25:39.124Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:25:40.349Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:40.350Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:40.407Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:40.623Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:40.697Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:40.973Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method\n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method\n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:25:40.981Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:40.981Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":153,"timestamp":"2024-11-22T12:25:41.134Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method \n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method \n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:25:41.136Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:41.137Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method \n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method \n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:25:42.132Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:25:44.129Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:25:44.571Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{cb571f} at example.wlk:12 exhausted all cases without a match [Parameter]{cb571f} at example.wlk:12 exhausted all cases without a match","stack":"Error: [Parameter]{cb571f} at example.wlk:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:25:45.171Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":145,"timestamp":"2024-11-22T12:25:45.317Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:45.318Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{4e20d6} at example.wlk:12 exhausted all cases without a match [Parameter]{4e20d6} at example.wlk:12 exhausted all cases without a match","stack":"Error: [Parameter]{4e20d6} at example.wlk:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:25:45.393Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:25:45.500Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{df60f3} at example.wlk:12 exhausted all cases without a match [Parameter]{df60f3} at example.wlk:12 exhausted all cases without a match","stack":"Error: [Parameter]{df60f3} at example.wlk:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:25:45.680Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{49dbfb} at example.wlk:12 exhausted all cases without a match [Parameter]{49dbfb} at example.wlk:12 exhausted all cases without a match","stack":"Error: [Parameter]{49dbfb} at example.wlk:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:25:45.973Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:46.146Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{480d63} at example.wlk:-- exhausted all cases without a match [Return]{480d63} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{480d63} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:25:48.643Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:48.775Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:48.913Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:48.968Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:49.368Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:50.858Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:50.926Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:25:51.075Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d75bff} at example.wlk:12 exhausted all cases without a match [Send]{d75bff} at example.wlk:12 exhausted all cases without a match","stack":"Error: [Send]{d75bff} at example.wlk:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:26:04.528Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{0a97a2} at example.wlk:-- exhausted all cases without a match [Return]{0a97a2} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{0a97a2} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:26:04.528Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:04.618Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:04.679Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:26:05.056Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:26:06.134Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:11.738Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:13.001Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:13.189Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:13.307Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:26:13.524Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T12:27:34.781Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":177,"timestamp":"2024-11-22T12:27:34.961Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:27:56.979Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:27:59.573Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:27:59.684Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:27:59.924Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:28:00.920Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":137,"timestamp":"2024-11-22T12:28:01.057Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:28:02.396Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:28:02.805Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:28:15.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:15.646Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:15.696Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:15.858Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:28:16.158Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:28:16.308Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T12:28:17.439Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eit [Variable]{e8fc6e} at example.wlk:24 exhausted all cases without a match example.eit [Variable]{e8fc6e} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.eit [Variable]{e8fc6e} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:17.759Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{90730b} at example.wlk:24 exhausted all cases without a match example.eitan [Variable]{90730b} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{90730b} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:17.978Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{59cf27} at example.wlk:24 exhausted all cases without a match example.eitan [Variable]{59cf27} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{59cf27} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:28:19.670Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:19.766Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:19.829Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:20.082Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":181,"timestamp":"2024-11-22T12:28:20.709Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.eitan [Variable]{94e9a7} at example.wlk:24 exhausted all cases without a match example.eitan [Variable]{94e9a7} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.eitan [Variable]{94e9a7} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:28:20.728Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:20.887Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:28:21.088Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:28:28.780Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:28:28.923Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:30.865Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:28:37.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:38.026Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:38.114Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":150,"timestamp":"2024-11-22T12:28:38.268Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:38.356Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:38.411Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:38.643Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:38.720Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:39.114Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.em [Variable]{f06564} at example.wlk:24 exhausted all cases without a match example.em [Variable]{f06564} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.em [Variable]{f06564} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:39.282Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emo [Variable]{025694} at example.wlk:24 exhausted all cases without a match example.emo [Variable]{025694} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.emo [Variable]{025694} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:39.465Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emoc [Variable]{2bce20} at example.wlk:24 exhausted all cases without a match example.emoc [Variable]{2bce20} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.emoc [Variable]{2bce20} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:39.627Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocio [Variable]{fb163c} at example.wlk:24 exhausted all cases without a match example.emocio [Variable]{fb163c} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.emocio [Variable]{fb163c} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:39.969Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocion [Variable]{8a2f66} at example.wlk:24 exhausted all cases without a match example.emocion [Variable]{8a2f66} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.emocion [Variable]{8a2f66} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:40.154Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocion1 [Variable]{4c27de} at example.wlk:24 exhausted all cases without a match example.emocion1 [Variable]{4c27de} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.emocion1 [Variable]{4c27de} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:28:40.925Z"} +{"level":"error","message":"✘ Completions for node failed: Error: example.emocion1 [Variable]{05aca2} at example.wlk:24 exhausted all cases without a match example.emocion1 [Variable]{05aca2} at example.wlk:24 exhausted all cases without a match","stack":"Error: example.emocion1 [Variable]{05aca2} at example.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:28:42.092Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:42.178Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:28:43.350Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:28:45.466Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:28:46.051Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:28:47.767Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":132,"timestamp":"2024-11-22T12:28:52.000Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"example.wlk","id":"e5b86e77-22bc-456f-86aa-3e88c6b9b175","imports":[],"members":[{"id":"1e42a7fa-df6e-4023-8433-fa8b663b00c7","members":[{"id":"03cf4a49-8e9e-4f6f-ae0e-650362ff3a11","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"1dff581f-7329-4ce5-a057-d4d2e9c247ff","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"5df55919-b9e6-418c-a638-34b8e4cd9760","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"3a559e37-eadd-440c-a56f-a8294c4474c7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"3d5b21e3-b11a-404e-8b94-fe420571c476","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"981fcc46-0650-46a9-a349-99fd1ae7d0df","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"45eb33be-2e73-4847-9065-613cf5fa3488","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"23bfe7ca-9053-45ef-a16c-1b020d971ec9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"de2b9765-c409-4607-b853-32a364c3333f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"f6f6a68c-1c80-402a-b628-b6e653086601","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"1a5d860b-1cad-40f4-a69d-70fb001c0f2e","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"633c51ce-10e8-48ab-992b-8c251970ca5f","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"861dd74c-fd60-4c23-8539-17a8f2d45ace","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5c9b298d-c0d6-4297-90d3-2d24a19f8c3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"902c5d5a-5b96-4ef7-8346-b44798f93ca9","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"7ababd60-5d90-4217-b691-02bbb3c778e1","message":"add","metadata":[],"receiver":{"id":"e6bd2604-9e65-4743-8543-1bcbdc9c557a","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}},"id":"ad620bb2-c4e6-4945-8553-d0c75f581ac2","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"5c6b2604-58ab-494e-8fd2-d234be9d56c2","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"b01bbb15-7573-4eab-8aab-c2644672976a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"66aefaca-5756-40f1-8077-26f2fc4755dd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":13,"offset":271},"start":{"column":5,"line":13,"offset":214}},"value":{"args":[{"id":"00019aa8-f3b5-4a58-ab1b-e3e728b1f179","members":[{"body":{"id":"c133839c-1b26-4574-9e7b-14fd339311ba","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0750afa3-908d-4c3e-b11e-8094a0cb1d0c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"42346f3c-940e-4bbb-b056-4e267d14fb95","message":"puedeLiberarse","metadata":[],"receiver":{"id":"40c62d0d-18b5-4896-b6c1-54be8922e9ce","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":13,"offset":251},"start":{"column":41,"line":13,"offset":250}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":13,"offset":268},"start":{"column":41,"line":13,"offset":250}}}}]},"id":"9b24f197-9cd6-4576-b71d-c02ab219d244","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"b5e53f80-8372-4a6e-bf30-6e97518a7695","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":246},"start":{"column":36,"line":13,"offset":245}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"783381c9-b770-4af6-b41c-376b1c3217af","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"64cc29a4-7521-4dbd-b130-7a5d6d677336","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.puedeLiberarse() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":13,"offset":270},"start":{"column":34,"line":13,"offset":243}},"supertypes":[{"args":[],"id":"e891c400-faf1-4a6d-8d16-327aebbdbb0a","metadata":[],"reference":{"id":"da93cf2e-fe04-49d3-bccf-e2ccc94b1337","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"293d516d-e227-4541-a9c7-2e223f4e3ed4","message":"filter","metadata":[],"receiver":{"id":"e6beec42-a6cc-4573-bddc-8769b53f8577","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":13,"offset":235},"start":{"column":17,"line":13,"offset":226}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":13,"offset":271},"start":{"column":17,"line":13,"offset":226}}},"variable":{"id":"68183436-9af2-4c8c-a148-684bd4a549ba","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":13,"offset":223},"start":{"column":5,"line":13,"offset":214}}}}],"sourceMap":{"end":{"column":4,"line":14,"offset":276},"start":{"column":24,"line":12,"offset":207}}},"id":"fbb39ea1-e57f-49ce-b16c-c52db0f9e678","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":14,"offset":276},"start":{"column":3,"line":12,"offset":186}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":279},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"8b3f13df-69c6-4d2d-8b88-e2d44a9b2798","members":[{"id":"e57dd314-e963-46e1-9477-d4000c2e20ba","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":18,"offset":332},"start":{"column":3,"line":18,"offset":302}},"value":{"id":"43aa32b6-6717-40c5-b2f0-77bf41359acd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"66ea5443-b257-46fe-b9a7-766df16593ac","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"37bd1abb-4eec-44da-98dc-0d0623facf1c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"7ab21b11-1530-4d49-9c0a-97b56fd75048","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":21,"offset":428},"start":{"column":29,"line":21,"offset":424}},"value":true}}],"sourceMap":{"end":{"column":33,"line":21,"offset":428},"start":{"column":29,"line":21,"offset":424}}},"id":"267b62a5-d240-4540-a772-c76026095cd5","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":21,"offset":428},"start":{"column":3,"line":21,"offset":398}}},{"body":{"id":"cb300e72-6c16-4422-bcc1-b8b8cbd56f1e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e0891464-5c9c-4357-96f4-a1a878cc9a84","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"254e04e1-3812-4bb3-a5cb-f20e114c5f3b","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"3517fbe5-ced2-4312-a5f1-28ae71036abd","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"22a26623-818c-4fba-872a-171bfe91c97e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ed020d29-d86e-4d58-a09f-9daed09f8f4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b7103063-7e4f-4a36-a75d-f1091149b788","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"8b01a65d-926f-4127-81db-404af1eeb3eb","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"b39c9b27-1a1b-4cfd-a7b3-bc9c45892932","isOverride":false,"metadata":[],"name":"intensidadDefault","parameters":[{"id":"1e9241a1-a20d-4060-80a6-b89c9ace74db","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":22,"offset":431},"start":{"column":1,"line":17,"offset":283}},"supertypes":[]},{"id":"adf94c86-07fd-4e5e-a1a1-36bc129c9524","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":50,"line":24,"offset":484},"start":{"column":1,"line":24,"offset":435}},"value":{"args":[{"id":"255aa8f4-6bf8-47bc-8dd7-77fc76566426","metadata":[],"name":"intensidadDefault","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":24,"offset":483},"start":{"column":30,"line":24,"offset":464}},"value":{"id":"b72ed426-c453-4bda-a71f-2bca631a690a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":24,"offset":483},"start":{"column":48,"line":24,"offset":482}},"value":1}}],"id":"91605ad8-ce83-4538-b302-cedc86474db9","instantiated":{"id":"beb7d1c9-3e5e-445a-a6e3-f912c877564f","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":24,"offset":463},"start":{"column":22,"line":24,"offset":456}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":50,"line":24,"offset":484},"start":{"column":18,"line":24,"offset":452}}}},{"id":"ce2aa17c-157d-4820-8c1b-7694409e1470","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":25,"offset":503},"start":{"column":1,"line":25,"offset":486}},"value":{"id":"642a48cb-ca27-40ed-a632-2dec2a51ad74","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":25,"offset":503},"start":{"column":15,"line":25,"offset":500}}}}],"metadata":[],"name":"example","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":59,"line":25,"offset":544},"start":{"column":19,"line":25,"offset":504}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:29:02.043Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:29:52.796Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{a2f969} at example.wlk:25 exhausted all cases without a match [Literal]{a2f969} at example.wlk:25 exhausted all cases without a match","stack":"Error: [Literal]{a2f969} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:29:53.566Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{e5c781} at example.wlk:25 exhausted all cases without a match [NamedArgument]{e5c781} at example.wlk:25 exhausted all cases without a match","stack":"Error: [NamedArgument]{e5c781} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:29:53.566Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:53.666Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:53.728Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T12:29:53.962Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:53.962Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T12:29:54.073Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:54.073Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:29:54.175Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:54.251Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:54.410Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:29:54.559Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{89ab0e} at example.wlk:25 exhausted all cases without a match [Literal]{89ab0e} at example.wlk:25 exhausted all cases without a match","stack":"Error: [Literal]{89ab0e} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:29:54.744Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{9b45bf} at example.wlk:25 exhausted all cases without a match [NamedArgument]{9b45bf} at example.wlk:25 exhausted all cases without a match","stack":"Error: [NamedArgument]{9b45bf} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:29:54.744Z"} +{"error":["wollok.lang.EvaluationError wrapping TypeScript Error: Could not resolve reference to emocion2 or its a reference to void"],"level":"info","message":"🖥️ REPL execution - build failed for c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","ok":false,"timeElapsed":265,"timestamp":"2024-11-22T12:29:58.325Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{7a6fce} at example.wlk:25 exhausted all cases without a match [Literal]{7a6fce} at example.wlk:25 exhausted all cases without a match","stack":"Error: [Literal]{7a6fce} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:30:00.680Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{3475ed} at example.wlk:25 exhausted all cases without a match [NamedArgument]{3475ed} at example.wlk:25 exhausted all cases without a match","stack":"Error: [NamedArgument]{3475ed} at example.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:30:00.680Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":162,"timestamp":"2024-11-22T12:31:01.120Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T12:31:01.245Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":230,"timestamp":"2024-11-22T12:31:01.477Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":172,"timestamp":"2024-11-22T12:31:01.650Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:31:03.766Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:31:05.412Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:31:05.527Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:06.281Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:06.441Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:06.534Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:31:06.649Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:06.720Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:06.869Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:06.931Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:31:07.153Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:31:07.884Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:31:09.900Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:31:10.017Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:31:12.174Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{8c907d} at example.wlk:-- exhausted all cases without a match [Return]{8c907d} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{8c907d} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:31:15.710Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:15.795Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{634fe5} at example.wlk:-- exhausted all cases without a match [Return]{634fe5} at example.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{634fe5} at example.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:31:16.142Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:31:16.257Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:16.258Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:16.359Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:16.428Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:31:16.537Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:16.690Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:31:17.434Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":163,"timestamp":"2024-11-22T12:31:17.749Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:18.112Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:18.179Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:31:18.325Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T12:32:14.879Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:32:14.983Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T12:32:15.345Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":148,"timestamp":"2024-11-22T12:32:15.745Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:32:16.089Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:32:16.409Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":140,"timestamp":"2024-11-22T12:32:16.903Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T12:32:17.510Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:32:18.074Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:34:17.177Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:34:17.450Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:18.816Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:18.877Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:18.946Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:19.188Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:19.292Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:19.293Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:19.326Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class f\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class f\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:19.566Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class fu\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class fu\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:19.651Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class fur\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class fur\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:19.799Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furi\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furi\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:20.025Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:20.140Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:20.608Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia i\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia i\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:20.689Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:20.708Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia in\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia in\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:20.916Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inh\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inh\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:21.124Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inhe\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inhe\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:21.220Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inher\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inher\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:21.286Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inheri\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inheri\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:21.728Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inherit\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | }\n 26 | \n> 27 | class furia inherit\n | ^\n 28 | \n 29 | const emocion1 = new Emocion(intensidadDefault=1)\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:21.829Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:22.051Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:22.296Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:24.231Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:24.563Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:24.693Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:25.167Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:25.283Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:25.460Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:25.535Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:25.690Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits C\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits C\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:32.344Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:34:32.369Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:32.831Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits E\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits E\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:33.066Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Em\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Em\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:33.197Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emo\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emo\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:33.408Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emoc\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emoc\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:33.538Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emoci\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emoci\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:33.639Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emocio\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emocio\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:33.818Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:34.001Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class F inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class F inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:35.342Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Fu inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Fu inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:35.606Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Fur inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Fur inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:35.892Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Furi inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Furi inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:36.006Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:34:36.081Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:34:38.056Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:34:38.229Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:34:40.374Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:34:40.479Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T12:34:49.660Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:34:49.770Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:34:50.239Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:34:52.525Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:34:52.633Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:35:00.324Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:35:00.324Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:35:00.979Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:35:15.434Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":194,"timestamp":"2024-11-22T12:35:16.648Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:35:21.005Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T12:35:21.145Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":137,"timestamp":"2024-11-22T12:35:21.378Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:35:21.614Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":173,"timestamp":"2024-11-22T12:35:21.788Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":218,"timestamp":"2024-11-22T12:35:22.020Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class Furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.024Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits Emocion\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.030Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.037Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":204,"timestamp":"2024-11-22T12:35:22.241Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits C\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits C\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.249Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.253Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.258Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.265Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.272Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits \n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.276Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia inherits\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.285Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class furia\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.296Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 27 | class\n 28 | \n> 29 | const emocion1 = new Emocion(intensidadDefault=1)\n | ^\n 30 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:22.302Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:35:22.421Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:35:22.775Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T12:35:23.319Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:35:23.424Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:35:23.528Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:35:23.643Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:35:23.976Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":301,"timestamp":"2024-11-22T12:35:25.171Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:35:26.268Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:35:26.428Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:35:26.605Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:35:27.610Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:35:27.855Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":329,"timestamp":"2024-11-22T12:35:28.419Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":368,"timestamp":"2024-11-22T12:35:28.939Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:28.942Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T12:35:29.063Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:35:29.175Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T12:35:29.353Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:35:29.604Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":207,"timestamp":"2024-11-22T12:35:29.964Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:35:30.159Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":171,"timestamp":"2024-11-22T12:35:30.470Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:35:30.576Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:35:30.818Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:35:30.936Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:35:31.211Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method \n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method \n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:31.288Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":137,"timestamp":"2024-11-22T12:35:31.500Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method\n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 12 | method\n 13 | \n> 14 | }\n | ^\n 15 | \n 16 | class Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:31.505Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":127,"timestamp":"2024-11-22T12:35:31.708Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":211,"timestamp":"2024-11-22T12:35:32.013Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 36 | // override method liberar(evento) = self.intensidad()\n 37 | \n> 38 | }\n | ^\n 39 | \n 40 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse example.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 36 | // override method liberar(evento) = self.intensidad()\n 37 | \n> 38 | }\n | ^\n 39 | \n 40 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:32.208Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T12:35:32.437Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:35:32.762Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:35:32.935Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":136,"timestamp":"2024-11-22T12:35:33.072Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:35:33.175Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:35:33.409Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:35:33.765Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:35:35.073Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:35:35.838Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:35:36.792Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:37.469Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:35:37.580Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:35:38.529Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:35:38.842Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:35:38.977Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:39.077Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:35:39.194Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:35:39.299Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":118,"timestamp":"2024-11-22T12:35:39.418Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:35:39.521Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":227,"timestamp":"2024-11-22T12:35:39.753Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:35:41.086Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":149,"timestamp":"2024-11-22T12:35:41.235Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:35:41.343Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:41.445Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:41.743Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":182,"timestamp":"2024-11-22T12:35:41.926Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | override method\n 29 | \n> 30 | }\n | ^\n 31 | \n 32 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | override method\n 29 | \n> 30 | }\n | ^\n 31 | \n 32 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:42.866Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | override method \n 29 | \n> 30 | }\n | ^\n 31 | \n 32 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 28 | override method \n 29 | \n> 30 | }\n | ^\n 31 | \n 32 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:35:42.871Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:43.105Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:43.273Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:35:43.831Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:35:43.937Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:35:44.110Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:35:44.215Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:35:44.393Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:35:44.494Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:35:44.599Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":139,"timestamp":"2024-11-22T12:35:44.742Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:35:44.850Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":269,"timestamp":"2024-11-22T12:35:45.306Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:35:46.385Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:35:46.665Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:35:46.787Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T12:35:46.916Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:35:47.021Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:35:47.501Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:35:47.608Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:35:52.529Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:35:52.919Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:35:53.134Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:36:05.807Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:36:10.730Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:36:15.180Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:36:18.880Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:36:19.529Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:36:19.910Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T12:36:20.319Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ea3afd9e-3991-4c86-8011-f61e1be421f5","members":[{"body":{"id":"73723e42-3e09-4da4-8d01-72a8b0fce534","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8ac6e619-8258-456c-af42-2bca7e08485c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"6170c1f7-53a1-49ef-bea4-f38cb228ac7f","message":"intensidadElevada","metadata":[],"receiver":{"id":"77c468cf-c49c-4f46-a749-d22803b51e1e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":28,"offset":620},"start":{"column":67,"line":28,"offset":616}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":28,"offset":640},"start":{"column":67,"line":28,"offset":616}}}],"id":"20016a2f-3ea1-45a4-9f5f-03061e9c291e","message":"and","metadata":[],"receiver":{"args":[],"id":"5c509a23-abc8-464c-80c2-a16517ae07e5","message":"tienePalabrota7","metadata":[],"receiver":{"id":"e157d931-1d6b-4d63-9ddb-dc10761d92ba","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":28,"offset":593},"start":{"column":40,"line":28,"offset":589}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":28,"offset":611},"start":{"column":40,"line":28,"offset":589}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":28,"offset":640},"start":{"column":40,"line":28,"offset":589}}}}],"sourceMap":{"end":{"column":91,"line":28,"offset":640},"start":{"column":40,"line":28,"offset":589}}},"id":"819750a0-adb8-4e78-bac6-484bb3b6ad0b","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":28,"offset":640},"start":{"column":5,"line":28,"offset":554}}},{"body":{"id":"560ab94b-5971-4ec3-b9aa-9a08ff4ca8da","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ddc01b60-3d51-4b80-a8fb-63c1acd437b5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"a6ec6c8c-be5f-4a6f-8ee1-2dd9007347c4","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":29,"offset":683},"start":{"column":32,"line":29,"offset":673}}}}],"sourceMap":{"end":{"column":42,"line":29,"offset":683},"start":{"column":32,"line":29,"offset":673}}},"id":"1542a96b-2d26-4df9-b952-424f884de04b","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":29,"offset":683},"start":{"column":5,"line":29,"offset":646}}}],"metadata":[{"args":{"position":"end","text":"// method puedeLiberarse()= self.tienePalabrota7() and self.intensidadElevada()"},"name":"comment"}],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":60,"line":29,"offset":701},"start":{"column":42,"line":29,"offset":683}}},{"code":"malformedMember","sourceMap":{"end":{"column":37,"line":30,"offset":739},"start":{"column":5,"line":30,"offset":707}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":32,"offset":748},"start":{"column":1,"line":27,"offset":519}},"supertypes":[{"args":[],"id":"63675b47-2c3c-43b7-8dc0-2b32d5ece2ee","metadata":[],"reference":{"id":"9076d559-5ff8-4297-a712-9fbd6ac1bd95","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":27,"offset":547},"start":{"column":22,"line":27,"offset":540}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":27,"offset":547},"start":{"column":22,"line":27,"offset":540}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:36:22.087Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":140,"timestamp":"2024-11-22T12:36:23.376Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:36:28.846Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:28.847Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:28.940Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:36:29.051Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:29.117Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:29.194Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:36:29.301Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:29.466Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:29.529Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:36:29.729Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:29.793Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.pa [Field]{3576ec} at intensamente.wlk:28 exhausted all cases without a match intensamente.Furia.pa [Field]{3576ec} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: intensamente.Furia.pa [Field]{3576ec} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:36:29.875Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.pala [Field]{f981d9} at intensamente.wlk:28 exhausted all cases without a match intensamente.Furia.pala [Field]{f981d9} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: intensamente.Furia.pala [Field]{f981d9} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:36:30.265Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:36:30.373Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.pal [Field]{d8d0ca} at intensamente.wlk:28 exhausted all cases without a match intensamente.Furia.pal [Field]{d8d0ca} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: intensamente.Furia.pal [Field]{d8d0ca} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:36:30.461Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:36:30.835Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:36:31.477Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:36:31.584Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:36:31.695Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:36:31.802Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:36:31.923Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:36:32.402Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:36:32.500Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.pa [Field]{cd593a} at intensamente.wlk:28 exhausted all cases without a match intensamente.Furia.pa [Field]{cd593a} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: intensamente.Furia.pa [Field]{cd593a} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:36:32.582Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:36:32.967Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.palabr [Field]{f07b32} at intensamente.wlk:28 exhausted all cases without a match intensamente.Furia.palabr [Field]{f07b32} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: intensamente.Furia.palabr [Field]{f07b32} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:36:33.364Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T12:36:33.637Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:36:33.747Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:36:33.913Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T12:36:34.657Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:36:34.939Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:36:38.255Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:36:38.359Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a309d3a8-c4fe-4730-a910-5bc54e3a3e5f","members":[{"id":"0ab15ad8-9ce7-491c-be74-873b4f5bf1e9","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"7fc5baa6-7c63-470d-a5ee-8d91a57d6d25","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"a6a77b8f-f080-4030-ada9-2087dd213969","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"19faadc4-1acd-4d76-b289-4f256b230662","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"8bbfce99-80c7-4282-b92e-e2531eceba92","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"65a5c429-b17e-4d96-b737-4b339a4f83c1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1f6e8933-474c-4fd1-b6d4-2779fa32b128","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"38d8db27-2033-4f4b-b480-249eee130ffc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"1ce87a0e-91d5-4218-a69a-bf29ec58af27","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"b2d0ea1f-1da3-4043-b1b7-3b8ecc19a416","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"b5130c40-af82-449b-a6f3-ff92f9486128","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"e36df60f-b5f6-4514-a461-c66261841acb","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"0ca5cdfe-3fdb-4adc-8c6e-2204e9e7b22e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6e895763-0ee7-46fa-a61b-95853fd495b6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f318a9d4-c3ba-49f3-924f-7267e30a8972","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"9c8f8240-b1e8-49cf-b178-5192ca629ebc","message":"add","metadata":[],"receiver":{"id":"7c670dc7-0a81-4f31-941e-3cfe0603244c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"54b827f3-29fa-49b0-8d9e-c84a7b27e78f","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"1eb16ff0-b58a-47a2-9f6a-6d25ea8b0860","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"f07f2c4a-629f-497e-a963-acf462517159","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4b4cecab-8c64-44a6-970d-84b29f5120bd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"0592c1a3-5f99-4acf-a0e1-d984c2fbb5c8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}},"id":"aa1ce9e2-a823-4eda-8323-79c405907e44","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"65f94019-1a67-4d78-9aa1-1c6ca6799346","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":207},"start":{"column":22,"line":13,"offset":201}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":13,"offset":182}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":57,"line":14,"offset":269},"start":{"column":13,"line":14,"offset":225}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":272},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:4641\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:36:46.158Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a309d3a8-c4fe-4730-a910-5bc54e3a3e5f","members":[{"id":"0ab15ad8-9ce7-491c-be74-873b4f5bf1e9","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"7fc5baa6-7c63-470d-a5ee-8d91a57d6d25","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"a6a77b8f-f080-4030-ada9-2087dd213969","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"19faadc4-1acd-4d76-b289-4f256b230662","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":52},"start":{"column":19,"line":4,"offset":50}},"value":[{"id":"8bbfce99-80c7-4282-b92e-e2531eceba92","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"65a5c429-b17e-4d96-b737-4b339a4f83c1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1f6e8933-474c-4fd1-b6d4-2779fa32b128","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"38d8db27-2033-4f4b-b480-249eee130ffc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":102},"start":{"column":40,"line":7,"offset":100}},"value":12},{"id":"1ce87a0e-91d5-4218-a69a-bf29ec58af27","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":106},"start":{"column":44,"line":7,"offset":104}},"value":19}],"id":"b2d0ea1f-1da3-4043-b1b7-3b8ecc19a416","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"b5130c40-af82-449b-a6f3-ff92f9486128","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":91},"start":{"column":27,"line":7,"offset":87}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":107},"start":{"column":27,"line":7,"offset":87}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":27,"line":7,"offset":87}}},"id":"e36df60f-b5f6-4514-a461-c66261841acb","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":114},"start":{"column":3,"line":7,"offset":63}}},{"body":{"id":"0ca5cdfe-3fdb-4adc-8c6e-2204e9e7b22e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6e895763-0ee7-46fa-a61b-95853fd495b6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f318a9d4-c3ba-49f3-924f-7267e30a8972","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":172},"start":{"column":50,"line":10,"offset":165}}}],"id":"9c8f8240-b1e8-49cf-b178-5192ca629ebc","message":"add","metadata":[],"receiver":{"id":"7c670dc7-0a81-4f31-941e-3cfe0603244c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":160},"start":{"column":36,"line":10,"offset":151}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":36,"line":10,"offset":151}}},"id":"54b827f3-29fa-49b0-8d9e-c84a7b27e78f","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"1eb16ff0-b58a-47a2-9f6a-6d25ea8b0860","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":147},"start":{"column":25,"line":10,"offset":140}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":173},"start":{"column":3,"line":10,"offset":118}}},{"body":{"id":"f07f2c4a-629f-497e-a963-acf462517159","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4b4cecab-8c64-44a6-970d-84b29f5120bd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"0592c1a3-5f99-4acf-a0e1-d984c2fbb5c8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":14,"offset":215}}},"id":"aa1ce9e2-a823-4eda-8323-79c405907e44","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"65f94019-1a67-4d78-9aa1-1c6ca6799346","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":207},"start":{"column":22,"line":13,"offset":201}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":224},"start":{"column":3,"line":13,"offset":182}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":57,"line":14,"offset":269},"start":{"column":13,"line":14,"offset":225}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":272},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:4641\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:36:47.488Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:36:51.343Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":145,"timestamp":"2024-11-22T12:37:01.112Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:37:01.315Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T12:37:01.463Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:37:02.231Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:37:04.376Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:37:04.970Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:37:05.076Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidad [Field]{15b17e} at intensamente.wlk:21 exhausted all cases without a match intensamente.Emocion.intensidad [Field]{15b17e} at intensamente.wlk:21 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidad [Field]{15b17e} at intensamente.wlk:21 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:37:05.210Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:37:06.140Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:37:06.304Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:37:06.687Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:37:06.859Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:37:09.163Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":161,"timestamp":"2024-11-22T12:37:10.527Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:37:10.870Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:37:10.871Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:37:12.008Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:37:12.906Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:37:49.076Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T12:37:49.189Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:37:52.540Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:37:52.650Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{604d11} at intensamente.wlk:16 exhausted all cases without a match [Send]{604d11} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{604d11} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:37:57.568Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{8743b4} at intensamente.wlk:16 exhausted all cases without a match [Assignment]{8743b4} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Assignment]{8743b4} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:37:57.568Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:37:57.749Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:37:57.858Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{317577} at intensamente.wlk:16 exhausted all cases without a match [Send]{317577} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{317577} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:37:57.951Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{023f11} at intensamente.wlk:16 exhausted all cases without a match [Assignment]{023f11} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Assignment]{023f11} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:37:57.951Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:38:00.387Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:38:00.502Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d6e51b} at intensamente.wlk:16 exhausted all cases without a match [Send]{d6e51b} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{d6e51b} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:38:05.677Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{0a22a2} at intensamente.wlk:-- exhausted all cases without a match [Return]{0a22a2} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{0a22a2} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:38:05.677Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9e1e8a} at intensamente.wlk:16 exhausted all cases without a match [Send]{9e1e8a} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{9e1e8a} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:38:05.874Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{237104} at intensamente.wlk:-- exhausted all cases without a match [Return]{237104} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{237104} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:38:05.874Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d7a41a} at intensamente.wlk:16 exhausted all cases without a match [Send]{d7a41a} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{d7a41a} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:38:06.111Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{f23e34} at intensamente.wlk:-- exhausted all cases without a match [Return]{f23e34} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{f23e34} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:38:06.112Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{128271} at intensamente.wlk:16 exhausted all cases without a match [Send]{128271} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{128271} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:38:06.390Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3014e1} at intensamente.wlk:-- exhausted all cases without a match [Return]{3014e1} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3014e1} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:38:06.391Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f8557a} at intensamente.wlk:16 exhausted all cases without a match [Send]{f8557a} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Send]{f8557a} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:38:06.678Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3b64d7} at intensamente.wlk:-- exhausted all cases without a match [Return]{3b64d7} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3b64d7} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T12:38:06.678Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:38:59.595Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:39:00.640Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:39:07.469Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:07.469Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:07.535Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:07.637Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:39:07.837Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:07.844Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:39:07.961Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:08.024Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:39:08.140Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | \n 26 | method\n> 27 | }\n | ^\n 28 | \n 29 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | \n 26 | method\n> 27 | }\n | ^\n 28 | \n 29 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:39:08.157Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:08.157Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | \n 26 | method \n> 27 | }\n | ^\n 28 | \n 29 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 25 | \n 26 | method \n> 27 | }\n | ^\n 28 | \n 29 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:39:08.163Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:08.163Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{3bf34f} at intensamente.wlk:26 exhausted all cases without a match [Parameter]{3bf34f} at intensamente.wlk:26 exhausted all cases without a match","stack":"Error: [Parameter]{3bf34f} at intensamente.wlk:26 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:13.919Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:14.012Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{d0c581} at intensamente.wlk:26 exhausted all cases without a match [Parameter]{d0c581} at intensamente.wlk:26 exhausted all cases without a match","stack":"Error: [Parameter]{d0c581} at intensamente.wlk:26 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:14.093Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{da5b5f} at intensamente.wlk:26 exhausted all cases without a match [Parameter]{da5b5f} at intensamente.wlk:26 exhausted all cases without a match","stack":"Error: [Parameter]{da5b5f} at intensamente.wlk:26 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:14.423Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:39:14.529Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{a2496b} at intensamente.wlk:26 exhausted all cases without a match [Parameter]{a2496b} at intensamente.wlk:26 exhausted all cases without a match","stack":"Error: [Parameter]{a2496b} at intensamente.wlk:26 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:14.713Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:39:14.835Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:14.924Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:39:18.369Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:39:19.482Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:39:24.764Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:39:25.209Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:39:26.213Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T12:39:26.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:26.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:26.636Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | \n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | \n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:39:26.642Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:26.643Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | \n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | \n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:39:26.735Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:26.736Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:39:27.175Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:39:27.339Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:39:27.451Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:39:28.316Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{b6c07e} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{b6c07e} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{b6c07e} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:28.395Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:39:28.501Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{b9e43e} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{b9e43e} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{b9e43e} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:28.701Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{b7a67a} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{b7a67a} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{b7a67a} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:39:29.019Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:39:36.937Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T12:39:43.278Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d30d98} at intensamente.wlk:-- exhausted all cases without a match [Return]{d30d98} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d30d98} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:39:43.297Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:43.394Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:43.485Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:43.573Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:43.724Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:39:43.827Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:43.904Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:39:44.006Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{290280} at intensamente.wlk:-- exhausted all cases without a match [Return]{290280} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{290280} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:39:44.085Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3521b6} at intensamente.wlk:-- exhausted all cases without a match [Return]{3521b6} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3521b6} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:39:44.422Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:39:44.642Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:39:45.208Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{459874} at intensamente.wlk:-- exhausted all cases without a match [Return]{459874} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{459874} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:39:46.018Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T12:39:49.607Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:39:59.012Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T12:40:00.349Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T12:40:00.563Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T12:40:00.681Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":135,"timestamp":"2024-11-22T12:40:00.908Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T12:40:01.025Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:40:01.131Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:40:01.331Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:40:02.982Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:40:06.666Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T12:40:06.998Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:40:07.106Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:40:07.354Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:10.960Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:40:11.146Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":139,"timestamp":"2024-11-22T12:40:11.518Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:40:11.749Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:12.022Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:15.473Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:15.652Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T12:40:16.892Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:40:27.668Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:27.668Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:27.727Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:27.788Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T12:40:28.082Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:28.082Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:28.093Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:28.093Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class \n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class \n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:28.099Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class E\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class E\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:28.641Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Ev\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Ev\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:28.958Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Eve\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Eve\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:29.014Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Even\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Even\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:29.119Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Event\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Event\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:29.250Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Evento\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Evento\n 45 | \n> 46 | const emocion1 = new Emocion()\n | ^\n 47 | const eitan = new Persona (edad=2, emociones=[])\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:29.332Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:40:30.102Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T12:40:33.870Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:40:34.060Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:34.061Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:34.212Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:34.284Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:40:34.386Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Evento{\n 45 | const\n> 46 | }\n | ^\n 47 | \n 48 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Evento{\n 45 | const\n> 46 | }\n | ^\n 47 | \n 48 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:34.394Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:34.394Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Evento{\n 45 | const \n> 46 | }\n | ^\n 47 | \n 48 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 44 | class Evento{\n 45 | const \n> 46 | }\n | ^\n 47 | \n 48 | const emocion1 = new Emocion()\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:40:34.496Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:34.497Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:40:34.755Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:40:34.760Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.im [Field]{0aca09} at intensamente.wlk:45 exhausted all cases without a match intensamente.Evento.im [Field]{0aca09} at intensamente.wlk:45 exhausted all cases without a match","stack":"Error: intensamente.Evento.im [Field]{0aca09} at intensamente.wlk:45 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:40:34.934Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.imp [Field]{2228d9} at intensamente.wlk:45 exhausted all cases without a match intensamente.Evento.imp [Field]{2228d9} at intensamente.wlk:45 exhausted all cases without a match","stack":"Error: intensamente.Evento.imp [Field]{2228d9} at intensamente.wlk:45 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:40:35.101Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:40:35.360Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.impac [Field]{e405ba} at intensamente.wlk:45 exhausted all cases without a match intensamente.Evento.impac [Field]{e405ba} at intensamente.wlk:45 exhausted all cases without a match","stack":"Error: intensamente.Evento.impac [Field]{e405ba} at intensamente.wlk:45 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:40:35.431Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.impacto [Field]{53e6bc} at intensamente.wlk:45 exhausted all cases without a match intensamente.Evento.impacto [Field]{53e6bc} at intensamente.wlk:45 exhausted all cases without a match","stack":"Error: intensamente.Evento.impacto [Field]{53e6bc} at intensamente.wlk:45 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:40:35.707Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:40:38.235Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:40:38.340Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:40:38.766Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:40:38.952Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a5bff9ca-064d-42b5-9a94-df328e560416","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":50,"line":37,"offset":874},"start":{"column":9,"line":37,"offset":833}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":6,"line":38,"offset":881},"start":{"column":36,"line":36,"offset":822}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:10585\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:8360\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)","timestamp":"2024-11-22T12:41:55.495Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:41:55.509Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a5bff9ca-064d-42b5-9a94-df328e560416","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":50,"line":37,"offset":874},"start":{"column":9,"line":37,"offset":833}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":6,"line":38,"offset":881},"start":{"column":36,"line":36,"offset":822}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:10585\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:8360\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)","timestamp":"2024-11-22T12:42:01.348Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a5bff9ca-064d-42b5-9a94-df328e560416","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":50,"line":37,"offset":874},"start":{"column":9,"line":37,"offset":833}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":6,"line":38,"offset":881},"start":{"column":36,"line":36,"offset":822}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:10585\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:8360\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)","timestamp":"2024-11-22T12:42:02.704Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 41 | \n 42 | \n> 43 | }\n | ^\n 44 | \n 45 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 41 | \n 42 | \n> 43 | }\n | ^\n 44 | \n 45 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:42:03.802Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 40 | \n 41 | \n> 42 | }\n | ^\n 43 | \n 44 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 40 | \n 41 | \n> 42 | }\n | ^\n 43 | \n 44 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:42:08.094Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T12:42:14.077Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.pimpacto [Field]{a776fe} at intensamente.wlk:44 exhausted all cases without a match intensamente.Evento.pimpacto [Field]{a776fe} at intensamente.wlk:44 exhausted all cases without a match","stack":"Error: intensamente.Evento.pimpacto [Field]{a776fe} at intensamente.wlk:44 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:42:22.043Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:42:22.153Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:22.154Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:22.210Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:22.363Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:42:47.307Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:42:48.094Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:42:48.206Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:42:48.322Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:42:48.672Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:42:48.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:49.048Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:49.108Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:49.168Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:42:52.601Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:42:54.373Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{bc0269} at intensamente.wlk:47 exhausted all cases without a match [Literal]{bc0269} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Literal]{bc0269} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:42:55.397Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{51302b} at intensamente.wlk:47 exhausted all cases without a match [NamedArgument]{51302b} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [NamedArgument]{51302b} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:42:55.398Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:42:55.480Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T12:42:57.349Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:42:57.528Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:42:57.647Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":160,"timestamp":"2024-11-22T12:42:58.613Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":136,"timestamp":"2024-11-22T12:42:59.660Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T12:43:02.753Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:43:03.696Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:43:04.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:05.186Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:43:05.610Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T12:43:05.753Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ev [Variable]{161f32} at intensamente.wlk:47 exhausted all cases without a match intensamente.ev [Variable]{161f32} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: intensamente.ev [Variable]{161f32} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:43:06.214Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento [Variable]{13d7f6} at intensamente.wlk:47 exhausted all cases without a match intensamente.evento [Variable]{13d7f6} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: intensamente.evento [Variable]{13d7f6} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:43:06.725Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento [Variable]{942415} at intensamente.wlk:47 exhausted all cases without a match intensamente.evento [Variable]{942415} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: intensamente.evento [Variable]{942415} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:43:07.438Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:07.605Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:43:07.723Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:11.863Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:11.926Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:12.078Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":144,"timestamp":"2024-11-22T12:43:12.543Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:43:13.115Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{e41ba3} at intensamente.wlk:49 exhausted all cases without a match [Literal]{e41ba3} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [Literal]{e41ba3} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:43:27.882Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{a338d0} at intensamente.wlk:49 exhausted all cases without a match [NamedArgument]{a338d0} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [NamedArgument]{a338d0} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:43:27.882Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:27.980Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:43:28.563Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:43:28.950Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{6a2559} at intensamente.wlk:49 exhausted all cases without a match [Literal]{6a2559} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [Literal]{6a2559} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:43:29.168Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{02ba41} at intensamente.wlk:49 exhausted all cases without a match [NamedArgument]{02ba41} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [NamedArgument]{02ba41} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:43:29.169Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:43:29.289Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:43:29.477Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:29.478Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:29.560Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:43:29.680Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:29.751Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:43:29.854Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:29.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:30.029Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:43:30.136Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:43:30.195Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{e8ef4f} at intensamente.wlk:49 exhausted all cases without a match [Literal]{e8ef4f} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [Literal]{e8ef4f} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:43:30.361Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{a5f5c9} at intensamente.wlk:49 exhausted all cases without a match [NamedArgument]{a5f5c9} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [NamedArgument]{a5f5c9} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:43:30.361Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:43:30.650Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:44:30.015Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":159,"timestamp":"2024-11-22T12:44:30.731Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{3224e0} at intensamente.wlk:37 exhausted all cases without a match [If]{3224e0} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [If]{3224e0} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:44:31.141Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:31.255Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{17182d} at intensamente.wlk:37 exhausted all cases without a match [If]{17182d} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [If]{17182d} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:44:31.417Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{357f3a} at intensamente.wlk:37 exhausted all cases without a match [If]{357f3a} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [If]{357f3a} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:44:31.703Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:44:31.812Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:44:31.986Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:44:32.670Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:44:32.855Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:44:33.043Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:44:33.155Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:44:33.414Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{b271b6} at intensamente.wlk:37 exhausted all cases without a match [If]{b271b6} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [If]{b271b6} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:44:33.511Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:33.605Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:33.672Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:44:33.774Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:33.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:33.916Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":149,"timestamp":"2024-11-22T12:44:34.248Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:34.338Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:44:34.774Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:34.780Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:35.061Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:44:35.687Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T12:44:45.891Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T12:44:46.623Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T12:45:35.717Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:45:35.819Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T12:45:36.933Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:45:37.041Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T12:45:37.580Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:45:40.775Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:45:44.886Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:45:44.992Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:45:45.122Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:45:45.318Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:45.430Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:45.491Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:45:45.612Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:45.694Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:45.760Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T12:45:45.984Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:46.057Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:46.133Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:45:46.362Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:46.440Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:46.517Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:46.582Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T12:45:46.699Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:46.866Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:47.023Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:45:47.234Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:47.321Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:47.390Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:47.463Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:45:47.728Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:45:48.493Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:46:13.394Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T12:46:13.964Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:46:14.074Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:46:14.252Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:17.625Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:17.705Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:46:17.814Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:17.884Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:46:18.206Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:46:18.379Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:46:18.486Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:46:18.747Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:18.862Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:46:18.969Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | var\n 24 | \n> 25 | // Método para determinar si una emoción puede liberarse\n | ^\n 26 | method puedeLiberarse() = true\n 27 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | var\n 24 | \n> 25 | // Método para determinar si una emoción puede liberarse\n | ^\n 26 | method puedeLiberarse() = true\n 27 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:46:18.982Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:18.983Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | var \n 24 | \n> 25 | // Método para determinar si una emoción puede liberarse\n | ^\n 26 | method puedeLiberarse() = true\n 27 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | var \n 24 | \n> 25 | // Método para determinar si una emoción puede liberarse\n | ^\n 26 | method puedeLiberarse() = true\n 27 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:46:18.987Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:18.987Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.ca [Field]{b8f8c1} at intensamente.wlk:23 exhausted all cases without a match intensamente.Emocion.ca [Field]{b8f8c1} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.Emocion.ca [Field]{b8f8c1} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:46:19.158Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":150,"timestamp":"2024-11-22T12:46:19.405Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:19.508Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:19.572Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:19.646Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:46:19.749Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.cantid [Field]{2bd7cf} at intensamente.wlk:23 exhausted all cases without a match intensamente.Emocion.cantid [Field]{2bd7cf} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.Emocion.cantid [Field]{2bd7cf} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:46:19.869Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:46:20.406Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.cantidadE [Field]{33f971} at intensamente.wlk:23 exhausted all cases without a match intensamente.Emocion.cantidadE [Field]{33f971} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.Emocion.cantidadE [Field]{33f971} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:46:20.728Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:46:21.187Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.cantidadEven [Field]{8c1551} at intensamente.wlk:23 exhausted all cases without a match intensamente.Emocion.cantidadEven [Field]{8c1551} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.Emocion.cantidadEven [Field]{8c1551} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:46:21.267Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:46:21.757Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.pcantidadEventos [Field]{e85bbe} at intensamente.wlk:23 exhausted all cases without a match intensamente.Emocion.pcantidadEventos [Field]{e85bbe} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.Emocion.pcantidadEventos [Field]{e85bbe} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:46:24.675Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T12:46:24.875Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:24.879Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:24.942Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:25.198Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:25.263Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:25.330Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:25.670Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:25.737Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:46:31.237Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:46:31.785Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:46:32.181Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:46:32.283Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":135,"timestamp":"2024-11-22T12:46:35.261Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:46:35.662Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:46:35.980Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:46:36.308Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T12:46:37.370Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:46:37.749Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:46:39.466Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T12:46:39.598Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:46:43.657Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:46:44.106Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T12:46:45.323Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:46:45.426Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:46:45.932Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T12:46:46.556Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:47:47.699Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:47:48.215Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:48:38.112Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:48:38.888Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T12:48:49.249Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:49.250Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:49.429Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:49.752Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T12:48:49.872Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:48:52.625Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:48:53.312Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:53.789Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:48:53.965Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:48:54.644Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T12:48:54.961Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:54.962Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:48:54.966Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:54.967Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:48:55.062Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:55.063Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:48:56.914Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.in [Field]{83efee} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.in [Field]{83efee} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.in [Field]{83efee} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:57.110Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:48:57.212Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.int [Field]{0e2119} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.int [Field]{0e2119} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.int [Field]{0e2119} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:57.290Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:48:57.392Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.inte [Field]{13d92a} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.inte [Field]{13d92a} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.inte [Field]{13d92a} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:57.472Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.inten [Field]{1b4731} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.inten [Field]{1b4731} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.inten [Field]{1b4731} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:57.702Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:48:57.816Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intens [Field]{1c9e71} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.intens [Field]{1c9e71} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intens [Field]{1c9e71} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:58.024Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensi [Field]{b97820} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.intensi [Field]{b97820} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensi [Field]{b97820} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:58.209Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:48:58.383Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensida [Field]{dd5338} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.intensida [Field]{dd5338} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensida [Field]{dd5338} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:48:58.564Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:49:02.734Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T12:49:02.930Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:49:03.324Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:49:03.676Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:49:03.775Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:49:03.881Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 26 | \n 27 | \n> 28 | // Método para determinar si una emoción puede liberarse\n | ^\n 29 | method puedeLiberarse() = true\n 30 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:49:03.891Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.c [Field]{4989c5} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.c [Field]{4989c5} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.c [Field]{4989c5} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:49:03.975Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:49:04.220Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:04.220Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:04.418Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:04.574Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.criter [Field]{af556e} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.criter [Field]{af556e} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.criter [Field]{af556e} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:49:04.669Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":144,"timestamp":"2024-11-22T12:49:05.246Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.criterioI [Field]{b62a76} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.criterioI [Field]{b62a76} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.criterioI [Field]{b62a76} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:49:05.330Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:49:05.432Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.criterioIntens [Field]{9581a1} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.criterioIntens [Field]{9581a1} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.criterioIntens [Field]{9581a1} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:49:05.888Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":145,"timestamp":"2024-11-22T12:49:06.636Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.criterioIntensidad [Field]{06d6de} at intensamente.wlk:24 exhausted all cases without a match intensamente.Emocion.criterioIntensidad [Field]{06d6de} at intensamente.wlk:24 exhausted all cases without a match","stack":"Error: intensamente.Emocion.criterioIntensidad [Field]{06d6de} at intensamente.wlk:24 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:49:06.708Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:49:09.119Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:49:09.660Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:49:15.067Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:15.067Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:15.144Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:49:15.248Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:15.323Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:49:15.925Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T12:49:18.730Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:49:23.912Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:49:25.062Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T12:49:25.416Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:49:34.637Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{88c31a} at intensamente.wlk:-- exhausted all cases without a match [Return]{88c31a} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{88c31a} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:49:34.854Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:49:34.968Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:34.969Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:35.050Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:49:36.261Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:36.326Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:49:36.431Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:49:37.530Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T12:49:37.791Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:37.972Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:38.128Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{5c9684} at intensamente.wlk:28 exhausted all cases without a match [Assignment]{5c9684} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: [Assignment]{5c9684} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:49:51.593Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:51.694Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{047b05} at intensamente.wlk:28 exhausted all cases without a match [Assignment]{047b05} at intensamente.wlk:28 exhausted all cases without a match","stack":"Error: [Assignment]{047b05} at intensamente.wlk:28 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:49:52.382Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:52.485Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:49:52.546Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:49:52.973Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:49:53.234Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T12:50:47.912Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:50:48.038Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T12:50:48.226Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:50:48.332Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:50:48.980Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:50:49.086Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T12:50:51.626Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:50:51.732Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:50:52.528Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:50:52.660Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:50:52.661Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:50:52.762Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:50:52.762Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T12:50:52.879Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:50:52.951Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:50:53.018Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:50:53.226Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:50:53.295Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:51:25.772Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{f9c766} at intensamente.wlk:-- exhausted all cases without a match [Return]{f9c766} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{f9c766} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:25.791Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T12:51:25.993Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d16317} at intensamente.wlk:-- exhausted all cases without a match [Return]{d16317} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d16317} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:27.791Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:27.888Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T12:51:28.095Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{7ab81a} at intensamente.wlk:-- exhausted all cases without a match [Return]{7ab81a} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{7ab81a} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:29.074Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:51:30.881Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:51:30.984Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T12:51:33.466Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{28cda5} at intensamente.wlk:-- exhausted all cases without a match [Return]{28cda5} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{28cda5} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:33.506Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:33.699Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:51:33.808Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:51:33.912Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2889f2} at intensamente.wlk:-- exhausted all cases without a match [Return]{2889f2} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2889f2} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:33.933Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:51:34.115Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{09c58d} at intensamente.wlk:-- exhausted all cases without a match [Return]{09c58d} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{09c58d} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:34.285Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:51:34.568Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:51:34.730Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:51:35.066Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T12:51:35.178Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{cfb378} at intensamente.wlk:-- exhausted all cases without a match [Return]{cfb378} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{cfb378} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:35.474Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:35.573Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:35.634Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{509137} at intensamente.wlk:-- exhausted all cases without a match [Return]{509137} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{509137} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:35.734Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:51:36.761Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{e87d83} at intensamente.wlk:-- exhausted all cases without a match [Return]{e87d83} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{e87d83} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:37.090Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:37.179Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:37.242Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":189,"timestamp":"2024-11-22T12:51:37.432Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:37.433Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:37.600Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3d7941} at intensamente.wlk:-- exhausted all cases without a match [Return]{3d7941} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3d7941} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:37.799Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{181c92} at intensamente.wlk:-- exhausted all cases without a match [Return]{181c92} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{181c92} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:38.269Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3eee04} at intensamente.wlk:37 exhausted all cases without a match [Send]{3eee04} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{3eee04} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:39.642Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{34e661} at intensamente.wlk:-- exhausted all cases without a match [Return]{34e661} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{34e661} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:39.642Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:51:39.748Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:39.748Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:51:39.812Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:51:39.913Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a5fa0d} at intensamente.wlk:37 exhausted all cases without a match [Send]{a5fa0d} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{a5fa0d} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:39.996Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{416ca8} at intensamente.wlk:-- exhausted all cases without a match [Return]{416ca8} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{416ca8} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:39.996Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{68b776} at intensamente.wlk:37 exhausted all cases without a match [Send]{68b776} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{68b776} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:40.423Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{527584} at intensamente.wlk:-- exhausted all cases without a match [Return]{527584} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{527584} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:40.423Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{49b39e} at intensamente.wlk:37 exhausted all cases without a match [Send]{49b39e} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{49b39e} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:40.604Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bf831a} at intensamente.wlk:-- exhausted all cases without a match [Return]{bf831a} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bf831a} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:40.604Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:51:40.823Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{2eb4e3} at intensamente.wlk:37 exhausted all cases without a match [Send]{2eb4e3} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{2eb4e3} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:40.844Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2747fb} at intensamente.wlk:-- exhausted all cases without a match [Return]{2747fb} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2747fb} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:40.844Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{744b6f} at intensamente.wlk:37 exhausted all cases without a match [Send]{744b6f} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{744b6f} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:41.078Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{1ba8ee} at intensamente.wlk:-- exhausted all cases without a match [Return]{1ba8ee} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{1ba8ee} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:41.078Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d2e4f6} at intensamente.wlk:37 exhausted all cases without a match [Send]{d2e4f6} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{d2e4f6} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:41.441Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{1a270f} at intensamente.wlk:-- exhausted all cases without a match [Return]{1a270f} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{1a270f} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:41.441Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4bfb19} at intensamente.wlk:37 exhausted all cases without a match [Send]{4bfb19} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{4bfb19} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:41.616Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{1c4ff4} at intensamente.wlk:-- exhausted all cases without a match [Return]{1c4ff4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{1c4ff4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:41.616Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3ebe0f} at intensamente.wlk:37 exhausted all cases without a match [Send]{3ebe0f} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{3ebe0f} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:41.801Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{a4f2cc} at intensamente.wlk:-- exhausted all cases without a match [Return]{a4f2cc} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{a4f2cc} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:41.801Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4c2af5} at intensamente.wlk:37 exhausted all cases without a match [Send]{4c2af5} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{4c2af5} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:42.143Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{98c4c1} at intensamente.wlk:-- exhausted all cases without a match [Return]{98c4c1} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{98c4c1} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:42.143Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b72fc1} at intensamente.wlk:37 exhausted all cases without a match [Send]{b72fc1} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Send]{b72fc1} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:51:42.463Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d6d739} at intensamente.wlk:-- exhausted all cases without a match [Return]{d6d739} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d6d739} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:51:42.463Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:52:09.177Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T12:52:15.398Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:52:15.506Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:52:15.680Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T12:52:21.433Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T12:52:36.919Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:52:37.259Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"468cbb43-5662-4c08-a390-421c2b79cc26","members":[{"id":"06d1a359-232b-4436-a02a-ac9393425628","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":5,"line":22,"offset":374}},"value":{"id":"3b02888b-4529-4b69-bd46-55c81e0fcc1d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":31,"line":22,"offset":400}},"value":100}},{"id":"584fe7da-1c7d-4f1b-ab40-c9ff544a12c3","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":5,"line":23,"offset":410}},"value":{"id":"d01a3d14-6455-4842-b59b-6d7b06abb1a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":36,"line":23,"offset":441}},"value":0}},{"id":"da8199fd-6a27-4f3f-b691-078e1e1dba51","isConstant":true,"isProperty":false,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":24,"offset":477},"start":{"column":5,"line":24,"offset":448}},"value":{"id":"40b07560-b67b-46d3-b066-9dee89f9685d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":24,"offset":477},"start":{"column":31,"line":24,"offset":474}},"value":100}},{"body":{"id":"f43928ee-dc30-4f1a-b528-556cea293130","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c383ceb5-8477-4b2a-9470-4164e3fe1003","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"9014f3ce-e0fd-4b6d-be7a-6ac3098e76b3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":574},"start":{"column":29,"line":27,"offset":570}},"value":true}}],"sourceMap":{"end":{"column":33,"line":27,"offset":574},"start":{"column":29,"line":27,"offset":570}}},"id":"a7648e05-347c-4882-8ecd-3ec3a27dd98c","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":574},"start":{"column":3,"line":27,"offset":544}}},{"id":"aa3061ce-03cb-464f-8035-b6f4be0326ba","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"377988c6-1cf4-489b-a5f2-f8183e110928","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":29,"offset":601},"start":{"column":18,"line":29,"offset":595}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":29,"offset":602},"start":{"column":3,"line":29,"offset":580}}},{"body":{"id":"1a782bf9-73b0-4c34-b64d-67bf4c0158af","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9ce16e81-eb00-4aa1-838d-2d623041d715","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"969834a4-7974-4a0b-ae4e-c6c053a2dfd9","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"f12e1185-4ba7-49ff-a24b-8e16a695c985","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"2962c6b5-c216-44be-a5bb-e367f775167f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"41076b78-0fc3-4ec1-9ef6-439729cdb5c9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"76cfea2c-8a67-4f85-90f2-e66187bd83a0","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"d17bab71-0e26-4688-a574-40f7f07ed36e","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"a42a7b60-53fd-4d6a-afe6-b917fab4e418","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2d27d123-2f3b-4052-8493-78ac702ef0fc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c22c37b9-7aef-4400-8575-dae6fc12e81e","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"83702dcf-6d11-4139-a303-8dc6abaefaa7","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"79467c72-561b-4f22-8ab0-21c57b0b6273","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"2938208a-ee92-4305-88bc-0019d2818f8a","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"251cfd93-7945-435d-a0ec-4ffe300c58ad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ec8e71a0-6b01-473b-8bb5-af2ecb4dfee9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2df4ac77-a051-421e-a59b-4525183aad1e","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"d5a7114b-0797-469a-b715-bdf8906beed3","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2d350f12-5699-4016-8e8c-8d4a17385c4c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"6f50d576-0603-460e-98dd-1e47f346edc1","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":50,"line":29,"offset":627},"start":{"column":30,"line":29,"offset":607}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":31,"offset":632},"start":{"column":1,"line":20,"offset":351}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:52:39.173Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T12:52:39.651Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:00.373Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:00.939Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:03.645Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:03.864Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:04.792Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:18.372Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:18.773Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:18.938Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:19.166Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:19.198Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:19.492Z"} diff --git a/log/wollok3.log b/log/wollok3.log new file mode 100644 index 0000000..77c27b1 --- /dev/null +++ b/log/wollok3.log @@ -0,0 +1,563 @@ +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:19.558Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:19.640Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:19.980Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:20.260Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:20.281Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:20.497Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:20.539Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:21.168Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:21.528Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:22.162Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:27.495Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:29.013Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:29.384Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:29.649Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:29.982Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:30.251Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:30.473Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:31.122Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:31.529Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 42 | \n 43 | \n> 44 | }\n | ^\n 45 | \n 46 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:31.740Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:32.090Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:32.322Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | \n> 45 | }\n | ^\n 46 | \n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:53:32.806Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:53:33.447Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"8b80b70f-5fdd-417b-bfc9-30417e2e59be","members":[{"id":"edc1c661-3bbe-446a-a3b0-03561d18b981","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":5,"line":22,"offset":374}},"value":{"id":"5d7575e6-4b40-467d-8bb6-ad03ace91365","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":31,"line":22,"offset":400}},"value":100}},{"id":"a9f534f0-8c1d-427a-81a8-30ae45a1ead3","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":5,"line":23,"offset":410}},"value":{"id":"ee69d66c-84d4-487a-8fde-582542b03a5f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":36,"line":23,"offset":441}},"value":0}},{"id":"d163253c-90bc-4256-b52d-21bd71982680","isConstant":true,"isProperty":false,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":24,"offset":477},"start":{"column":5,"line":24,"offset":448}},"value":{"id":"1c46e250-612c-48ff-a31a-7d90fd0ac058","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":24,"offset":477},"start":{"column":31,"line":24,"offset":474}},"value":100}},{"body":{"id":"ad739cdb-496c-492d-8902-a10981b990d2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4ee7efb2-5681-4798-918b-1fe064e308ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"a3a57c2f-3edc-4a80-b82d-f2a57e1689c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":574},"start":{"column":29,"line":27,"offset":570}},"value":true}}],"sourceMap":{"end":{"column":33,"line":27,"offset":574},"start":{"column":29,"line":27,"offset":570}}},"id":"25edee33-5732-45c2-a201-4a57d886c735","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":574},"start":{"column":3,"line":27,"offset":544}}},{"body":{"id":"33bdd593-d0d9-40f7-a76a-9aab60a2d443","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"75d3a70c-babe-4e12-92f7-22560f1ccc5d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c1629289-6271-477d-82d2-d613823fa704","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":29,"offset":619},"start":{"column":27,"line":29,"offset":604}}}}],"sourceMap":{"end":{"column":42,"line":29,"offset":619},"start":{"column":27,"line":29,"offset":604}}},"id":"0b808f2a-e0c9-45b6-a288-34626c519e30","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"9f934bb9-322a-47c9-9858-8dc576cd59df","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":29,"offset":601},"start":{"column":18,"line":29,"offset":595}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":29,"offset":619},"start":{"column":3,"line":29,"offset":580}}},{"body":{"id":"420375ec-75bb-4623-8d65-a24db17f9658","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ce4e8551-6dc9-4daa-a8ec-93f951d21819","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c1f5eb1d-5e9b-4411-8ac6-02963eb68d66","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"8a9c3621-e300-49ce-bb32-de2778974abd","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"97edf639-a6fc-433d-b96e-dc2952bef524","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bd321f94-5e03-4831-8979-8600cc9e43f4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"17eea7e9-b2e0-4034-8f19-0e6e7c46a2a3","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"e1c9a254-f74e-4a10-a4f3-986aa10393fb","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"30170f7d-bbe8-4634-8980-de5197f35911","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c7ba7dcb-008d-4e95-a1aa-0a2b753a1c8a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"74badc7c-4538-4797-b490-18a7c119262b","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"220f5daf-8a9f-4c58-a089-4060e7bf276f","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"acb9436f-a276-44b0-ad16-09d60eea3106","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"a66710f3-5f0f-46db-a030-d4a8090fd23f","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"8b308c64-7cf4-47c7-8a37-43a408324bf5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6ce03e14-9699-4d06-a69e-7fb98a70a2de","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"fe9befe2-7fdd-4ad9-85d3-9cd3643da532","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"4c96c982-5107-42e7-adcb-fe0926ecc106","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"7e4deffa-7176-4cda-905e-9abd7e9b00fa","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"c72db9f9-7af6-4bca-af57-776afd741559","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":47,"line":29,"offset":624},"start":{"column":43,"line":29,"offset":620}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":31,"offset":629},"start":{"column":1,"line":20,"offset":351}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:53:40.966Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:53:52.269Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:52.329Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T12:53:52.443Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:52.444Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:53:52.555Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:52.635Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:52.789Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:52.876Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T12:53:52.991Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:53.066Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:53.224Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:53:53.561Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":138,"timestamp":"2024-11-22T12:53:54.051Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T12:53:55.881Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:54:08.298Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T12:54:09.343Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Super]{7a5710} at intensamente.wlk:42 exhausted all cases without a match [Super]{7a5710} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [Super]{7a5710} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:54:15.279Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ea2b35} at intensamente.wlk:42 exhausted all cases without a match [Send]{ea2b35} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [Send]{ea2b35} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T12:54:15.279Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:54:15.372Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:54:15.778Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:54:17.772Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T12:54:29.094Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":146,"timestamp":"2024-11-22T12:55:36.550Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:55:37.551Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:55:38.677Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:55:48.894Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T12:55:58.965Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T12:55:59.444Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:55:59.782Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:56:00.009Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:09.974Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:13.293Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:15.029Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:56:16.546Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:56:54.204Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T12:56:54.622Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:56:54.732Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:56:56.771Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:56:56.835Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T12:56:56.940Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:56:56.940Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:56:57.046Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:56:57.203Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:57.260Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:56:57.261Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":122,"timestamp":"2024-11-22T12:56:57.383Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:57.392Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:58.037Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:58.306Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:58.830Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:58.945Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:59.679Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:56:59.696Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:56:59.955Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:57:00.061Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:57:00.241Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:57:00.345Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:57:00.537Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 51 | \n 52 | \n> 53 | class Evento{\n | ^\n 54 | const property impacto\n 55 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:57:00.624Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":125,"timestamp":"2024-11-22T12:57:32.110Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:57:32.304Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T12:57:39.076Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T12:57:41.626Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T12:57:43.062Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:57:43.173Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T12:57:46.104Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T12:57:48.355Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:08.057Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:58:08.158Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:08.158Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:08.340Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T12:58:09.471Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.in [Field]{30b3e6} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.in [Field]{30b3e6} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.in [Field]{30b3e6} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:10.085Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.int [Field]{97f3f9} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.int [Field]{97f3f9} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.int [Field]{97f3f9} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:10.250Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T12:58:10.512Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.inten [Field]{21c000} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.inten [Field]{21c000} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.inten [Field]{21c000} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:10.532Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T12:58:10.638Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:58:10.801Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensi [Field]{9e7f7b} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensi [Field]{9e7f7b} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensi [Field]{9e7f7b} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:10.881Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{4e65f4} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{4e65f4} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{4e65f4} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:11.265Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{933856} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{933856} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{933856} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:14.335Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":129,"timestamp":"2024-11-22T12:58:14.464Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:14.465Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:14.541Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:14.637Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:14.787Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:58:14.960Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{9e9d97} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{9e9d97} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{9e9d97} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:15.128Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{6b223b} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{6b223b} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{6b223b} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:15.422Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{74a9df} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{74a9df} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{74a9df} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:15.727Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:58:16.191Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{a9d189} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{a9d189} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{a9d189} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:16.223Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":162,"timestamp":"2024-11-22T12:58:16.385Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{dbff50} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{dbff50} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{dbff50} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:16.466Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{ae1391} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{ae1391} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{ae1391} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:16.639Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:58:16.740Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{aa5947} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{aa5947} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{aa5947} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:16.901Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Furia.intensidad [Field]{b3e3b8} at intensamente.wlk:36 exhausted all cases without a match intensamente.Furia.intensidad [Field]{b3e3b8} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: intensamente.Furia.intensidad [Field]{b3e3b8} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T12:58:17.161Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadD [Field]{a74c8a} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadD [Field]{a74c8a} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadD [Field]{a74c8a} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:24.038Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDe [Field]{883072} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDe [Field]{883072} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDe [Field]{883072} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:24.413Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDef [Field]{7be6a4} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDef [Field]{7be6a4} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDef [Field]{7be6a4} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:24.681Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefa [Field]{8a605c} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefa [Field]{8a605c} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefa [Field]{8a605c} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:24.879Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T12:58:25.182Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefaul [Field]{e5f835} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefaul [Field]{e5f835} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefaul [Field]{e5f835} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:25.256Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefault [Field]{a97320} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefault [Field]{a97320} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefault [Field]{a97320} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:25.560Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3cea8855-c866-4c37-9caf-44320f2bda1b","members":[{"id":"3e856824-22e0-4026-874f-3b6bd36be53d","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"7f05d88e-58d7-4cc8-b8f7-26fb87da3556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"cc6a914e-9cb2-4930-88fc-12c010d91387","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"6bb3807c-571a-4b04-b89c-e452941c5955","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"2c25b88b-ae3b-4822-b798-4d4290a55c3a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e694dffb-2057-4025-9a0f-37b2666bd568","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"44c378e3-14fc-4e53-ab56-b9c14dec0768","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d432858c-7efa-436e-96d1-76d89e9d17f6","message":"intensidadElevada","metadata":[],"receiver":{"id":"757b3d70-3a65-4502-bafc-dc6223dcda5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"9760b4a5-b25a-4c8f-86f8-4f3b704773c7","message":"and","metadata":[],"receiver":{"args":[],"id":"db8e3bd1-90fb-4453-ace3-857b49cdf43e","message":"tienePalabrota7","metadata":[],"receiver":{"id":"a07a0f6e-093d-4951-ba0b-ac7a8f36f99f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"65901102-2ef7-4d4c-a0aa-34919b835340","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"545533ff-f568-4985-a54c-917d09c4b2ae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"594dc26f-2709-4872-b50f-7196bd3d9d3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"34f8aa7e-f2d2-4cd7-b7f2-29513a0d92e8","members":[{"body":{"id":"72cb43b6-0294-4e5c-a502-f5508542053c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0a62297-27ba-4d35-826b-fec65077c200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e5d7bf54-aa32-4a19-af40-b6a2928d60ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"b6054a89-ca51-4f2d-9609-5a39357d1837","message":">","metadata":[],"receiver":{"args":[],"id":"d07673f5-2ea4-4252-a96c-dd8baa97f891","message":"size","metadata":[],"receiver":{"id":"607f5bd3-57fe-4db7-adc3-d08195aa0670","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"b560f1d8-f5a0-4b65-80d6-b48f9a082920","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"70b040fe-f92b-47a4-b50e-434d80a1c092","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"5f027c12-0c93-49dd-a39d-121a4c1fd3e2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c11a44b1-e845-43b6-9991-60a7f73990b0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"a7333fac-94c4-487b-9df1-482b26f5aea8","metadata":[],"reference":{"id":"8d5c6f21-236f-45c3-aaa0-b489a07af21d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"187b5400-034e-4a17-ae80-fac68338eaf4","message":"any","metadata":[],"receiver":{"id":"4ba099e8-dbd1-466a-8284-0d95e9125eb8","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"970ad4b4-c40b-4788-925d-219678369320","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"45dc7f57-a5c5-4307-b098-00f1257da7ec","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc995dbf-3de3-4841-bfe1-db6e45f9d985","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f56b6683-27b8-4d55-9146-0bff09945ac3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"ce6b2d01-899f-41e6-816e-3772d67a0b0b","message":">","metadata":[],"receiver":{"id":"fb3c0bc6-8b28-45f2-a86d-4d9993e91f8e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"afb83538-edec-47b9-af27-8a2d01e6895e","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"355580a3-d2de-4fbf-b55d-f6e77afdb63e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"b4e86095-399b-42b1-9434-9ca95e1f70e8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"ac9e46cb-e2a7-425c-ba3d-645a6b7764e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"df17c304-2a88-4b7c-9a24-68bc101b8dab","message":"puedeLiberarse","metadata":[],"receiver":{"id":"732661d7-6efa-4ba5-bea4-777d5fa2dcc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"c0afb46f-bec7-4a78-8032-4eac0ff23aec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f5c14a97-9628-4975-9c62-958ddefb2b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"a500ad9f-07d7-4b8f-8b49-16f4778739e9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5624ee5a-96ae-4d64-912a-7245d59076c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"88252cfa-5cca-441c-9969-12219aae4844","message":"impacto","metadata":[],"receiver":{"id":"beac25b1-2372-4224-b545-b2c1f2f3ba3f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"3551b517-dda4-42a6-95ab-e63f08a8fee0","message":"-","metadata":[],"receiver":{"id":"d3cf0a82-3455-42d5-93ad-99e382713af6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12536a67-39c7-41cc-9720-646e1fe15c90","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"a9518659-e20b-475d-8695-da5b4bf32679","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"8ba694c6-7f77-4822-8875-bd50e48265b7","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"e801a61f-608f-4d1c-b170-61134d125219","metadata":[],"reference":{"id":"507c47b0-e719-49f5-b85d-57ae9448a9e5","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:40.249Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3cea8855-c866-4c37-9caf-44320f2bda1b","members":[{"id":"3e856824-22e0-4026-874f-3b6bd36be53d","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"7f05d88e-58d7-4cc8-b8f7-26fb87da3556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"cc6a914e-9cb2-4930-88fc-12c010d91387","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"6bb3807c-571a-4b04-b89c-e452941c5955","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"2c25b88b-ae3b-4822-b798-4d4290a55c3a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e694dffb-2057-4025-9a0f-37b2666bd568","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"44c378e3-14fc-4e53-ab56-b9c14dec0768","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d432858c-7efa-436e-96d1-76d89e9d17f6","message":"intensidadElevada","metadata":[],"receiver":{"id":"757b3d70-3a65-4502-bafc-dc6223dcda5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"9760b4a5-b25a-4c8f-86f8-4f3b704773c7","message":"and","metadata":[],"receiver":{"args":[],"id":"db8e3bd1-90fb-4453-ace3-857b49cdf43e","message":"tienePalabrota7","metadata":[],"receiver":{"id":"a07a0f6e-093d-4951-ba0b-ac7a8f36f99f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"65901102-2ef7-4d4c-a0aa-34919b835340","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"545533ff-f568-4985-a54c-917d09c4b2ae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"594dc26f-2709-4872-b50f-7196bd3d9d3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"34f8aa7e-f2d2-4cd7-b7f2-29513a0d92e8","members":[{"body":{"id":"72cb43b6-0294-4e5c-a502-f5508542053c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0a62297-27ba-4d35-826b-fec65077c200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e5d7bf54-aa32-4a19-af40-b6a2928d60ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"b6054a89-ca51-4f2d-9609-5a39357d1837","message":">","metadata":[],"receiver":{"args":[],"id":"d07673f5-2ea4-4252-a96c-dd8baa97f891","message":"size","metadata":[],"receiver":{"id":"607f5bd3-57fe-4db7-adc3-d08195aa0670","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"b560f1d8-f5a0-4b65-80d6-b48f9a082920","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"70b040fe-f92b-47a4-b50e-434d80a1c092","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"5f027c12-0c93-49dd-a39d-121a4c1fd3e2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c11a44b1-e845-43b6-9991-60a7f73990b0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"a7333fac-94c4-487b-9df1-482b26f5aea8","metadata":[],"reference":{"id":"8d5c6f21-236f-45c3-aaa0-b489a07af21d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"187b5400-034e-4a17-ae80-fac68338eaf4","message":"any","metadata":[],"receiver":{"id":"4ba099e8-dbd1-466a-8284-0d95e9125eb8","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"970ad4b4-c40b-4788-925d-219678369320","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"45dc7f57-a5c5-4307-b098-00f1257da7ec","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc995dbf-3de3-4841-bfe1-db6e45f9d985","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f56b6683-27b8-4d55-9146-0bff09945ac3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"ce6b2d01-899f-41e6-816e-3772d67a0b0b","message":">","metadata":[],"receiver":{"id":"fb3c0bc6-8b28-45f2-a86d-4d9993e91f8e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"afb83538-edec-47b9-af27-8a2d01e6895e","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"355580a3-d2de-4fbf-b55d-f6e77afdb63e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"b4e86095-399b-42b1-9434-9ca95e1f70e8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"ac9e46cb-e2a7-425c-ba3d-645a6b7764e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"df17c304-2a88-4b7c-9a24-68bc101b8dab","message":"puedeLiberarse","metadata":[],"receiver":{"id":"732661d7-6efa-4ba5-bea4-777d5fa2dcc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"c0afb46f-bec7-4a78-8032-4eac0ff23aec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f5c14a97-9628-4975-9c62-958ddefb2b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"a500ad9f-07d7-4b8f-8b49-16f4778739e9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5624ee5a-96ae-4d64-912a-7245d59076c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"88252cfa-5cca-441c-9969-12219aae4844","message":"impacto","metadata":[],"receiver":{"id":"beac25b1-2372-4224-b545-b2c1f2f3ba3f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"3551b517-dda4-42a6-95ab-e63f08a8fee0","message":"-","metadata":[],"receiver":{"id":"d3cf0a82-3455-42d5-93ad-99e382713af6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12536a67-39c7-41cc-9720-646e1fe15c90","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"a9518659-e20b-475d-8695-da5b4bf32679","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"8ba694c6-7f77-4822-8875-bd50e48265b7","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"e801a61f-608f-4d1c-b170-61134d125219","metadata":[],"reference":{"id":"507c47b0-e719-49f5-b85d-57ae9448a9e5","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:41.169Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3cea8855-c866-4c37-9caf-44320f2bda1b","members":[{"id":"3e856824-22e0-4026-874f-3b6bd36be53d","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"7f05d88e-58d7-4cc8-b8f7-26fb87da3556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"cc6a914e-9cb2-4930-88fc-12c010d91387","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"6bb3807c-571a-4b04-b89c-e452941c5955","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"2c25b88b-ae3b-4822-b798-4d4290a55c3a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e694dffb-2057-4025-9a0f-37b2666bd568","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"44c378e3-14fc-4e53-ab56-b9c14dec0768","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d432858c-7efa-436e-96d1-76d89e9d17f6","message":"intensidadElevada","metadata":[],"receiver":{"id":"757b3d70-3a65-4502-bafc-dc6223dcda5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"9760b4a5-b25a-4c8f-86f8-4f3b704773c7","message":"and","metadata":[],"receiver":{"args":[],"id":"db8e3bd1-90fb-4453-ace3-857b49cdf43e","message":"tienePalabrota7","metadata":[],"receiver":{"id":"a07a0f6e-093d-4951-ba0b-ac7a8f36f99f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"65901102-2ef7-4d4c-a0aa-34919b835340","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"545533ff-f568-4985-a54c-917d09c4b2ae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"594dc26f-2709-4872-b50f-7196bd3d9d3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"34f8aa7e-f2d2-4cd7-b7f2-29513a0d92e8","members":[{"body":{"id":"72cb43b6-0294-4e5c-a502-f5508542053c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0a62297-27ba-4d35-826b-fec65077c200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e5d7bf54-aa32-4a19-af40-b6a2928d60ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"b6054a89-ca51-4f2d-9609-5a39357d1837","message":">","metadata":[],"receiver":{"args":[],"id":"d07673f5-2ea4-4252-a96c-dd8baa97f891","message":"size","metadata":[],"receiver":{"id":"607f5bd3-57fe-4db7-adc3-d08195aa0670","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"b560f1d8-f5a0-4b65-80d6-b48f9a082920","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"70b040fe-f92b-47a4-b50e-434d80a1c092","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"5f027c12-0c93-49dd-a39d-121a4c1fd3e2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c11a44b1-e845-43b6-9991-60a7f73990b0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"a7333fac-94c4-487b-9df1-482b26f5aea8","metadata":[],"reference":{"id":"8d5c6f21-236f-45c3-aaa0-b489a07af21d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"187b5400-034e-4a17-ae80-fac68338eaf4","message":"any","metadata":[],"receiver":{"id":"4ba099e8-dbd1-466a-8284-0d95e9125eb8","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"970ad4b4-c40b-4788-925d-219678369320","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"45dc7f57-a5c5-4307-b098-00f1257da7ec","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc995dbf-3de3-4841-bfe1-db6e45f9d985","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f56b6683-27b8-4d55-9146-0bff09945ac3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"ce6b2d01-899f-41e6-816e-3772d67a0b0b","message":">","metadata":[],"receiver":{"id":"fb3c0bc6-8b28-45f2-a86d-4d9993e91f8e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"afb83538-edec-47b9-af27-8a2d01e6895e","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"355580a3-d2de-4fbf-b55d-f6e77afdb63e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"b4e86095-399b-42b1-9434-9ca95e1f70e8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"ac9e46cb-e2a7-425c-ba3d-645a6b7764e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"df17c304-2a88-4b7c-9a24-68bc101b8dab","message":"puedeLiberarse","metadata":[],"receiver":{"id":"732661d7-6efa-4ba5-bea4-777d5fa2dcc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"c0afb46f-bec7-4a78-8032-4eac0ff23aec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f5c14a97-9628-4975-9c62-958ddefb2b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"a500ad9f-07d7-4b8f-8b49-16f4778739e9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5624ee5a-96ae-4d64-912a-7245d59076c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"88252cfa-5cca-441c-9969-12219aae4844","message":"impacto","metadata":[],"receiver":{"id":"beac25b1-2372-4224-b545-b2c1f2f3ba3f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"3551b517-dda4-42a6-95ab-e63f08a8fee0","message":"-","metadata":[],"receiver":{"id":"d3cf0a82-3455-42d5-93ad-99e382713af6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12536a67-39c7-41cc-9720-646e1fe15c90","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"a9518659-e20b-475d-8695-da5b4bf32679","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"8ba694c6-7f77-4822-8875-bd50e48265b7","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"e801a61f-608f-4d1c-b170-61134d125219","metadata":[],"reference":{"id":"507c47b0-e719-49f5-b85d-57ae9448a9e5","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:41.478Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3cea8855-c866-4c37-9caf-44320f2bda1b","members":[{"id":"3e856824-22e0-4026-874f-3b6bd36be53d","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"7f05d88e-58d7-4cc8-b8f7-26fb87da3556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"cc6a914e-9cb2-4930-88fc-12c010d91387","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"6bb3807c-571a-4b04-b89c-e452941c5955","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"2c25b88b-ae3b-4822-b798-4d4290a55c3a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e694dffb-2057-4025-9a0f-37b2666bd568","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"44c378e3-14fc-4e53-ab56-b9c14dec0768","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d432858c-7efa-436e-96d1-76d89e9d17f6","message":"intensidadElevada","metadata":[],"receiver":{"id":"757b3d70-3a65-4502-bafc-dc6223dcda5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"9760b4a5-b25a-4c8f-86f8-4f3b704773c7","message":"and","metadata":[],"receiver":{"args":[],"id":"db8e3bd1-90fb-4453-ace3-857b49cdf43e","message":"tienePalabrota7","metadata":[],"receiver":{"id":"a07a0f6e-093d-4951-ba0b-ac7a8f36f99f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"65901102-2ef7-4d4c-a0aa-34919b835340","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"545533ff-f568-4985-a54c-917d09c4b2ae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"594dc26f-2709-4872-b50f-7196bd3d9d3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"34f8aa7e-f2d2-4cd7-b7f2-29513a0d92e8","members":[{"body":{"id":"72cb43b6-0294-4e5c-a502-f5508542053c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0a62297-27ba-4d35-826b-fec65077c200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e5d7bf54-aa32-4a19-af40-b6a2928d60ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"b6054a89-ca51-4f2d-9609-5a39357d1837","message":">","metadata":[],"receiver":{"args":[],"id":"d07673f5-2ea4-4252-a96c-dd8baa97f891","message":"size","metadata":[],"receiver":{"id":"607f5bd3-57fe-4db7-adc3-d08195aa0670","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"b560f1d8-f5a0-4b65-80d6-b48f9a082920","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"70b040fe-f92b-47a4-b50e-434d80a1c092","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"5f027c12-0c93-49dd-a39d-121a4c1fd3e2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c11a44b1-e845-43b6-9991-60a7f73990b0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"a7333fac-94c4-487b-9df1-482b26f5aea8","metadata":[],"reference":{"id":"8d5c6f21-236f-45c3-aaa0-b489a07af21d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"187b5400-034e-4a17-ae80-fac68338eaf4","message":"any","metadata":[],"receiver":{"id":"4ba099e8-dbd1-466a-8284-0d95e9125eb8","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"970ad4b4-c40b-4788-925d-219678369320","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"45dc7f57-a5c5-4307-b098-00f1257da7ec","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc995dbf-3de3-4841-bfe1-db6e45f9d985","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f56b6683-27b8-4d55-9146-0bff09945ac3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"ce6b2d01-899f-41e6-816e-3772d67a0b0b","message":">","metadata":[],"receiver":{"id":"fb3c0bc6-8b28-45f2-a86d-4d9993e91f8e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"afb83538-edec-47b9-af27-8a2d01e6895e","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"355580a3-d2de-4fbf-b55d-f6e77afdb63e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"b4e86095-399b-42b1-9434-9ca95e1f70e8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"ac9e46cb-e2a7-425c-ba3d-645a6b7764e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"df17c304-2a88-4b7c-9a24-68bc101b8dab","message":"puedeLiberarse","metadata":[],"receiver":{"id":"732661d7-6efa-4ba5-bea4-777d5fa2dcc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"c0afb46f-bec7-4a78-8032-4eac0ff23aec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f5c14a97-9628-4975-9c62-958ddefb2b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"a500ad9f-07d7-4b8f-8b49-16f4778739e9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5624ee5a-96ae-4d64-912a-7245d59076c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"88252cfa-5cca-441c-9969-12219aae4844","message":"impacto","metadata":[],"receiver":{"id":"beac25b1-2372-4224-b545-b2c1f2f3ba3f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"3551b517-dda4-42a6-95ab-e63f08a8fee0","message":"-","metadata":[],"receiver":{"id":"d3cf0a82-3455-42d5-93ad-99e382713af6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12536a67-39c7-41cc-9720-646e1fe15c90","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"a9518659-e20b-475d-8695-da5b4bf32679","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"8ba694c6-7f77-4822-8875-bd50e48265b7","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"e801a61f-608f-4d1c-b170-61134d125219","metadata":[],"reference":{"id":"507c47b0-e719-49f5-b85d-57ae9448a9e5","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:46.749Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3cea8855-c866-4c37-9caf-44320f2bda1b","members":[{"id":"3e856824-22e0-4026-874f-3b6bd36be53d","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"7f05d88e-58d7-4cc8-b8f7-26fb87da3556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"cc6a914e-9cb2-4930-88fc-12c010d91387","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"6bb3807c-571a-4b04-b89c-e452941c5955","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"2c25b88b-ae3b-4822-b798-4d4290a55c3a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e694dffb-2057-4025-9a0f-37b2666bd568","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"44c378e3-14fc-4e53-ab56-b9c14dec0768","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d432858c-7efa-436e-96d1-76d89e9d17f6","message":"intensidadElevada","metadata":[],"receiver":{"id":"757b3d70-3a65-4502-bafc-dc6223dcda5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"9760b4a5-b25a-4c8f-86f8-4f3b704773c7","message":"and","metadata":[],"receiver":{"args":[],"id":"db8e3bd1-90fb-4453-ace3-857b49cdf43e","message":"tienePalabrota7","metadata":[],"receiver":{"id":"a07a0f6e-093d-4951-ba0b-ac7a8f36f99f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"65901102-2ef7-4d4c-a0aa-34919b835340","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"545533ff-f568-4985-a54c-917d09c4b2ae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"594dc26f-2709-4872-b50f-7196bd3d9d3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"34f8aa7e-f2d2-4cd7-b7f2-29513a0d92e8","members":[{"body":{"id":"72cb43b6-0294-4e5c-a502-f5508542053c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0a62297-27ba-4d35-826b-fec65077c200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e5d7bf54-aa32-4a19-af40-b6a2928d60ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"b6054a89-ca51-4f2d-9609-5a39357d1837","message":">","metadata":[],"receiver":{"args":[],"id":"d07673f5-2ea4-4252-a96c-dd8baa97f891","message":"size","metadata":[],"receiver":{"id":"607f5bd3-57fe-4db7-adc3-d08195aa0670","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"b560f1d8-f5a0-4b65-80d6-b48f9a082920","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"70b040fe-f92b-47a4-b50e-434d80a1c092","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"5f027c12-0c93-49dd-a39d-121a4c1fd3e2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c11a44b1-e845-43b6-9991-60a7f73990b0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"a7333fac-94c4-487b-9df1-482b26f5aea8","metadata":[],"reference":{"id":"8d5c6f21-236f-45c3-aaa0-b489a07af21d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"187b5400-034e-4a17-ae80-fac68338eaf4","message":"any","metadata":[],"receiver":{"id":"4ba099e8-dbd1-466a-8284-0d95e9125eb8","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"970ad4b4-c40b-4788-925d-219678369320","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"45dc7f57-a5c5-4307-b098-00f1257da7ec","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc995dbf-3de3-4841-bfe1-db6e45f9d985","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f56b6683-27b8-4d55-9146-0bff09945ac3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"ce6b2d01-899f-41e6-816e-3772d67a0b0b","message":">","metadata":[],"receiver":{"id":"fb3c0bc6-8b28-45f2-a86d-4d9993e91f8e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"afb83538-edec-47b9-af27-8a2d01e6895e","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"355580a3-d2de-4fbf-b55d-f6e77afdb63e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"b4e86095-399b-42b1-9434-9ca95e1f70e8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"ac9e46cb-e2a7-425c-ba3d-645a6b7764e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"df17c304-2a88-4b7c-9a24-68bc101b8dab","message":"puedeLiberarse","metadata":[],"receiver":{"id":"732661d7-6efa-4ba5-bea4-777d5fa2dcc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"c0afb46f-bec7-4a78-8032-4eac0ff23aec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f5c14a97-9628-4975-9c62-958ddefb2b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"a500ad9f-07d7-4b8f-8b49-16f4778739e9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5624ee5a-96ae-4d64-912a-7245d59076c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"88252cfa-5cca-441c-9969-12219aae4844","message":"impacto","metadata":[],"receiver":{"id":"beac25b1-2372-4224-b545-b2c1f2f3ba3f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"3551b517-dda4-42a6-95ab-e63f08a8fee0","message":"-","metadata":[],"receiver":{"id":"d3cf0a82-3455-42d5-93ad-99e382713af6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12536a67-39c7-41cc-9720-646e1fe15c90","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"a9518659-e20b-475d-8695-da5b4bf32679","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"8ba694c6-7f77-4822-8875-bd50e48265b7","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"e801a61f-608f-4d1c-b170-61134d125219","metadata":[],"reference":{"id":"507c47b0-e719-49f5-b85d-57ae9448a9e5","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:48.786Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"3cea8855-c866-4c37-9caf-44320f2bda1b","members":[{"id":"3e856824-22e0-4026-874f-3b6bd36be53d","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"7f05d88e-58d7-4cc8-b8f7-26fb87da3556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"cc6a914e-9cb2-4930-88fc-12c010d91387","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"6bb3807c-571a-4b04-b89c-e452941c5955","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"2c25b88b-ae3b-4822-b798-4d4290a55c3a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e694dffb-2057-4025-9a0f-37b2666bd568","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"44c378e3-14fc-4e53-ab56-b9c14dec0768","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d432858c-7efa-436e-96d1-76d89e9d17f6","message":"intensidadElevada","metadata":[],"receiver":{"id":"757b3d70-3a65-4502-bafc-dc6223dcda5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"9760b4a5-b25a-4c8f-86f8-4f3b704773c7","message":"and","metadata":[],"receiver":{"args":[],"id":"db8e3bd1-90fb-4453-ace3-857b49cdf43e","message":"tienePalabrota7","metadata":[],"receiver":{"id":"a07a0f6e-093d-4951-ba0b-ac7a8f36f99f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"65901102-2ef7-4d4c-a0aa-34919b835340","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"545533ff-f568-4985-a54c-917d09c4b2ae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"594dc26f-2709-4872-b50f-7196bd3d9d3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"34f8aa7e-f2d2-4cd7-b7f2-29513a0d92e8","members":[{"body":{"id":"72cb43b6-0294-4e5c-a502-f5508542053c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0a62297-27ba-4d35-826b-fec65077c200","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e5d7bf54-aa32-4a19-af40-b6a2928d60ef","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"b6054a89-ca51-4f2d-9609-5a39357d1837","message":">","metadata":[],"receiver":{"args":[],"id":"d07673f5-2ea4-4252-a96c-dd8baa97f891","message":"size","metadata":[],"receiver":{"id":"607f5bd3-57fe-4db7-adc3-d08195aa0670","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"b560f1d8-f5a0-4b65-80d6-b48f9a082920","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"70b040fe-f92b-47a4-b50e-434d80a1c092","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"5f027c12-0c93-49dd-a39d-121a4c1fd3e2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c11a44b1-e845-43b6-9991-60a7f73990b0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"a7333fac-94c4-487b-9df1-482b26f5aea8","metadata":[],"reference":{"id":"8d5c6f21-236f-45c3-aaa0-b489a07af21d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"187b5400-034e-4a17-ae80-fac68338eaf4","message":"any","metadata":[],"receiver":{"id":"4ba099e8-dbd1-466a-8284-0d95e9125eb8","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"970ad4b4-c40b-4788-925d-219678369320","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"45dc7f57-a5c5-4307-b098-00f1257da7ec","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cc995dbf-3de3-4841-bfe1-db6e45f9d985","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f56b6683-27b8-4d55-9146-0bff09945ac3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"ce6b2d01-899f-41e6-816e-3772d67a0b0b","message":">","metadata":[],"receiver":{"id":"fb3c0bc6-8b28-45f2-a86d-4d9993e91f8e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"afb83538-edec-47b9-af27-8a2d01e6895e","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"355580a3-d2de-4fbf-b55d-f6e77afdb63e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"b4e86095-399b-42b1-9434-9ca95e1f70e8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"ac9e46cb-e2a7-425c-ba3d-645a6b7764e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"df17c304-2a88-4b7c-9a24-68bc101b8dab","message":"puedeLiberarse","metadata":[],"receiver":{"id":"732661d7-6efa-4ba5-bea4-777d5fa2dcc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"c0afb46f-bec7-4a78-8032-4eac0ff23aec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f5c14a97-9628-4975-9c62-958ddefb2b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"a500ad9f-07d7-4b8f-8b49-16f4778739e9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5624ee5a-96ae-4d64-912a-7245d59076c0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"88252cfa-5cca-441c-9969-12219aae4844","message":"impacto","metadata":[],"receiver":{"id":"beac25b1-2372-4224-b545-b2c1f2f3ba3f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"3551b517-dda4-42a6-95ab-e63f08a8fee0","message":"-","metadata":[],"receiver":{"id":"d3cf0a82-3455-42d5-93ad-99e382713af6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12536a67-39c7-41cc-9720-646e1fe15c90","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"a9518659-e20b-475d-8695-da5b4bf32679","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"8ba694c6-7f77-4822-8875-bd50e48265b7","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"e801a61f-608f-4d1c-b170-61134d125219","metadata":[],"reference":{"id":"507c47b0-e719-49f5-b85d-57ae9448a9e5","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:58:49.584Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T12:58:49.912Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T12:58:58.155Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"a7581c20-40e4-4295-b706-063e2b7da84b","members":[{"id":"05ebae37-a20f-4112-aec1-cb7a848d4ca5","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":5,"line":35,"offset":684}},"value":{"id":"725f1da3-ff90-4dae-84b8-b4ad4827ad57","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":703},"start":{"column":22,"line":35,"offset":701}},"value":[{"id":"7783911e-2287-4c82-86ca-3c0e06a6a49d","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"id":"db1e042b-b9aa-4771-99b0-2a27b4175631","isConstant":true,"isProperty":false,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":36,"offset":725},"start":{"column":5,"line":36,"offset":709}},"value":{"id":"6d40e884-cc58-4a75-b36c-c90e4146619a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"ef766e23-be32-4bc2-b007-57e0ace18393","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e90826a5-2998-415c-a18c-84c27f037976","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"19fc9727-8dbd-4895-ab67-9a7d8c11aa22","message":"intensidadElevada","metadata":[],"receiver":{"id":"5e9f7f30-9d10-4704-88f5-9877ca7cd8a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":821},"start":{"column":67,"line":38,"offset":817}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":67,"line":38,"offset":817}}}],"id":"a5474914-9af2-4f05-ae66-74b6073679b8","message":"and","metadata":[],"receiver":{"args":[],"id":"57bd6a75-ee68-4b0b-afe8-650e6b098e07","message":"tienePalabrota7","metadata":[],"receiver":{"id":"0dd91481-bd7e-4e5d-88e3-751c314a8390","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":794},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":812},"start":{"column":40,"line":38,"offset":790}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":40,"line":38,"offset":790}}},"id":"b65f767f-c897-4d46-a760-b31d8a700e8a","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":841},"start":{"column":5,"line":38,"offset":755}}},{"body":{"id":"4383cdea-19c8-4f15-839f-cba8b8169c1c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"05bf4cb2-0f03-420f-9c74-09641850516e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"18167070-e90b-4aec-85cf-6aae438bebaa","members":[{"body":{"id":"f0b641e2-32d6-43af-9316-1bcb1a6cd3da","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e68b7c6a-5005-49b9-890b-272e6757a640","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ec1e5cc9-d4e1-4bd8-bef9-9883b168135d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":59,"line":39,"offset":901}},"value":7}],"id":"57b141bf-2cb9-4be7-b075-18fac56c13e7","message":">","metadata":[],"receiver":{"args":[],"id":"56acf2bc-1387-47ca-a964-23fd7b2c237d","message":"size","metadata":[],"receiver":{"id":"4036c343-f2bc-4349-9fc7-a08d7c7e156e","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":893},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":900},"start":{"column":50,"line":39,"offset":892}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":902},"start":{"column":50,"line":39,"offset":892}}}}]},"id":"241aad3f-21ef-436f-96dd-72c19857fcf6","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"b268bb0d-0348-4be3-891f-ff55522e2b61","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":890},"start":{"column":47,"line":39,"offset":889}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"40174851-4543-446e-88fa-7bbc920eada2","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"6b97bb92-c9f7-40dc-bcbc-27f987509398","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":46,"line":39,"offset":888}},"supertypes":[{"args":[],"id":"432598a6-714a-42a3-a36a-55efabb5a64e","metadata":[],"reference":{"id":"00fe359e-f0f0-4875-aa79-680533707567","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"0a0517f5-5429-49c9-8012-9db918ae1910","message":"any","metadata":[],"receiver":{"id":"6ad7b28e-e58a-4d85-804e-98e7f2455d8e","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":884},"start":{"column":32,"line":39,"offset":874}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":32,"line":39,"offset":874}}},"id":"4858c7d1-6e16-4013-a924-5098c1d0fac6","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":903},"start":{"column":5,"line":39,"offset":847}}},{"body":{"id":"e528d9e3-1ff6-4ab3-a065-dece916fe234","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"dccaa6ff-2b42-453c-92df-1e886bbcec63","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"37922273-0b0e-4703-bbb3-ce5df2771d5b","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":45,"line":40,"offset":949}}}],"id":"fd005f94-5785-441c-995f-83e1a81af4e5","message":">","metadata":[],"receiver":{"id":"5f463ce7-091f-41c1-91bf-34c4e5ea4d6a","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":948},"start":{"column":34,"line":40,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":34,"line":40,"offset":938}}},"id":"aba6eafe-be8d-4227-9501-d3f100d408db","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":967},"start":{"column":5,"line":40,"offset":909}}},{"body":{"id":"b55bdbc2-789e-4a7e-8395-6f405af251f6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"0bedba30-ac69-4568-8b7a-122fcef1d2b2","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":1026},"start":{"column":11,"line":43,"offset":1020}}}],"id":"6621d7ac-e154-43e8-bea2-ba03af7bd72a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":1027},"start":{"column":5,"line":43,"offset":1014}}},{"condition":{"args":[],"id":"be00c909-c3c2-4658-9a72-16ffbfa66c60","message":"puedeLiberarse","metadata":[],"receiver":{"id":"7107660b-132e-4ae1-b614-e49aa944854a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1041},"start":{"column":8,"line":44,"offset":1037}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1058},"start":{"column":8,"line":44,"offset":1037}}},"elseBody":{"id":"d6cb38cf-cbc8-4fe9-bfb2-b52381461c23","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f52270f5-cc17-483b-808b-84e80ce38e36","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":5,"line":44,"offset":1034}},"thenBody":{"id":"9c053879-e83f-4e3b-b9c6-fc3451a31e5b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"be9107e5-3e81-466e-8cd1-92177f23b208","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":9,"line":45,"offset":1070}},"value":{"args":[{"args":[],"id":"a54fa9ba-96dd-41dc-b174-7a95f0dc4efc","message":"impacto","metadata":[],"receiver":{"id":"5e2f6508-0787-45c3-a8cb-fb7a21049c2d","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1090},"start":{"column":23,"line":45,"offset":1084}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1100},"start":{"column":23,"line":45,"offset":1084}}}],"id":"d7c605c9-252b-4418-8865-474f0970bf8d","message":"-","metadata":[],"receiver":{"id":"51f26f97-ef3b-4ee6-a944-1b16d99fd2ea","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"f07f2d0c-8f34-4a80-9d6a-84fa2901973c","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1080},"start":{"column":9,"line":45,"offset":1070}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1107},"start":{"column":30,"line":44,"offset":1059}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":37,"line":42,"offset":1007}}},"id":"16be6664-3e8e-4f12-857c-c6a9246a740f","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"e1a26b2b-8e14-4b4b-a754-df0eed15ba4e","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":1005},"start":{"column":29,"line":42,"offset":999}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1113},"start":{"column":5,"line":42,"offset":975}}}],"metadata":[],"name":"Furia","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":43,"line":36,"offset":747},"start":{"column":22,"line":36,"offset":726}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1116},"start":{"column":1,"line":34,"offset":649}},"supertypes":[{"args":[],"id":"2b953741-57f7-4ef8-ae72-287834f391e7","metadata":[],"reference":{"id":"00197a38-fac4-4235-956b-d22c03c2c92c","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":677},"start":{"column":22,"line":34,"offset":670}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:00.573Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T12:59:02.330Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":143,"timestamp":"2024-11-22T12:59:02.622Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T12:59:04.377Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T12:59:04.577Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T12:59:05.545Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T12:59:05.663Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T12:59:05.784Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:59:05.950Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T12:59:07.507Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:59:07.614Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T12:59:07.737Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidad [Field]{e98b35} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidad [Field]{e98b35} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidad [Field]{e98b35} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:10.071Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T12:59:16.446Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T12:59:18.706Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 50 | const\n 51 | \n> 52 | }\n | ^\n 53 | \n 54 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 50 | const\n 51 | \n> 52 | }\n | ^\n 53 | \n 54 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:59:19.146Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 50 | const \n 51 | \n> 52 | }\n | ^\n 53 | \n 54 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 50 | const \n 51 | \n> 52 | }\n | ^\n 53 | \n 54 | \n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T12:59:19.181Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.in [Field]{493a13} at intensamente.wlk:50 exhausted all cases without a match intensamente.Alegria.in [Field]{493a13} at intensamente.wlk:50 exhausted all cases without a match","stack":"Error: intensamente.Alegria.in [Field]{493a13} at intensamente.wlk:50 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:19.643Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T12:59:19.982Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.inte [Field]{96ba71} at intensamente.wlk:50 exhausted all cases without a match intensamente.Alegria.inte [Field]{96ba71} at intensamente.wlk:50 exhausted all cases without a match","stack":"Error: intensamente.Alegria.inte [Field]{96ba71} at intensamente.wlk:50 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:19.998Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intend [Field]{40746c} at intensamente.wlk:50 exhausted all cases without a match intensamente.Alegria.intend [Field]{40746c} at intensamente.wlk:50 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intend [Field]{40746c} at intensamente.wlk:50 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:20.223Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":135,"timestamp":"2024-11-22T12:59:20.533Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intens [Field]{6f3b64} at intensamente.wlk:50 exhausted all cases without a match intensamente.Alegria.intens [Field]{6f3b64} at intensamente.wlk:50 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intens [Field]{6f3b64} at intensamente.wlk:50 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:20.642Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intensida [Field]{6a5a4d} at intensamente.wlk:50 exhausted all cases without a match intensamente.Alegria.intensida [Field]{6a5a4d} at intensamente.wlk:50 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intensida [Field]{6a5a4d} at intensamente.wlk:50 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:21.014Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadD [Field]{ce4dbe} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadD [Field]{ce4dbe} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadD [Field]{ce4dbe} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:27.087Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T12:59:27.202Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDe [Field]{b6fd36} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDe [Field]{b6fd36} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDe [Field]{b6fd36} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:28.050Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDef [Field]{6a3ea9} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDef [Field]{6a3ea9} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDef [Field]{6a3ea9} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:28.223Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T12:59:28.360Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefua [Field]{8d79e3} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefua [Field]{8d79e3} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefua [Field]{8d79e3} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:28.542Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":167,"timestamp":"2024-11-22T12:59:29.036Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:59:29.244Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefua [Field]{595294} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefua [Field]{595294} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefua [Field]{595294} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:29.320Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T12:59:30.042Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefa [Field]{cfb197} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefa [Field]{cfb197} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefa [Field]{cfb197} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:30.115Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefaul [Field]{ba294f} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadDefaul [Field]{ba294f} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefaul [Field]{ba294f} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T12:59:30.439Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T12:59:35.754Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":141,"timestamp":"2024-11-22T12:59:42.964Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T13:00:59.368Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:00:59.473Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:00:59.660Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:01:01.427Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:01:03.387Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:01:03.493Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:01:03.698Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T13:01:41.487Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.pintensidad [Field]{86b45b} at intensamente.wlk:50 exhausted all cases without a match intensamente.Alegria.pintensidad [Field]{86b45b} at intensamente.wlk:50 exhausted all cases without a match","stack":"Error: intensamente.Alegria.pintensidad [Field]{86b45b} at intensamente.wlk:50 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:01:41.515Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":150,"timestamp":"2024-11-22T13:01:41.666Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":204,"timestamp":"2024-11-22T13:01:41.871Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:41.872Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":155,"timestamp":"2024-11-22T13:01:42.028Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:42.029Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":174,"timestamp":"2024-11-22T13:01:42.203Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:01:42.322Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:42.322Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:01:42.438Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:42.439Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":177,"timestamp":"2024-11-22T13:01:42.616Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:42.622Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":179,"timestamp":"2024-11-22T13:01:42.802Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:01:42.930Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:42.936Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:01:43.049Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:43.049Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":163,"timestamp":"2024-11-22T13:01:43.212Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":194,"timestamp":"2024-11-22T13:01:43.406Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":232,"timestamp":"2024-11-22T13:01:43.638Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":188,"timestamp":"2024-11-22T13:01:43.832Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":257,"timestamp":"2024-11-22T13:01:44.095Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T13:01:44.238Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":176,"timestamp":"2024-11-22T13:01:44.414Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T13:01:44.552Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T13:01:44.677Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":138,"timestamp":"2024-11-22T13:01:44.853Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:44.946Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:45.558Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:01:45.827Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T13:01:50.359Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:01:52.322Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:52.878Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T13:01:53.002Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:53.003Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:53.072Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:01:53.177Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:53.329Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:01:53.392Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:01:55.782Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:01:56.045Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:01:56.544Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:01:58.703Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:02:03.697Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T13:02:05.252Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:02:08.623Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:02:42.824Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:02:43.209Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:02:44.209Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:02:44.514Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:02:44.682Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:02:44.845Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method\n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method\n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:02:45.036Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:02:45.036Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method \n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method \n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:02:48.712Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T13:03:39.247Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:03:39.248Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:03:39.376Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:03:39.376Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:03:39.487Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:03:39.571Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method \n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method \n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:03:39.686Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method\n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method\n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:03:39.864Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method \n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | override method \n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:03:40.230Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:03:41.004Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:03:41.144Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:03:41.280Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:03:41.392Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:03:41.668Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:03:41.775Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":145,"timestamp":"2024-11-22T13:03:41.921Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:03:53.976Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:04:07.499Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:04:07.873Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:04:07.974Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3063a5} at intensamente.wlk:-- exhausted all cases without a match [Return]{3063a5} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3063a5} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:04:08.089Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:08.187Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:08.263Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:08.330Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:04:08.435Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:08.595Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:04:09.221Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:09.874Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:10.080Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:10.240Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:10.308Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:10.560Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:13.010Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:13.121Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:13.278Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:13.432Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:04:17.246Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{744dae} at intensamente.wlk:52 exhausted all cases without a match [Send]{744dae} at intensamente.wlk:52 exhausted all cases without a match","stack":"Error: [Send]{744dae} at intensamente.wlk:52 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:04:18.588Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{a65745} at intensamente.wlk:-- exhausted all cases without a match [Return]{a65745} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{a65745} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:04:18.588Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:18.711Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:18.791Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:18.959Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:19.037Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:19.424Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:19.719Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:19.964Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:20.452Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:20.516Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:20.577Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:04:29.123Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:04:32.286Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:04:32.451Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:04:33.127Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":131,"timestamp":"2024-11-22T13:04:33.965Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:04:34.113Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:34.697Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method\n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method\n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:04:34.706Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:34.706Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method \n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method \n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:04:34.798Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:34.798Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:04:34.906Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:04:35.113Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:35.678Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:35.828Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:35.975Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:04:36.077Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:36.078Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:04:36.183Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:36.244Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:04:36.305Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:04:37.828Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:04:39.771Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T13:04:41.088Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:04:53.700Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:05:07.120Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":138,"timestamp":"2024-11-22T13:05:07.471Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:05:07.939Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method \n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method \n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:08.764Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method\n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | method\n 55 | \n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:08.772Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:05:09.199Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:05:09.691Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":140,"timestamp":"2024-11-22T13:05:10.247Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{161ec4} at intensamente.wlk:54 exhausted all cases without a match [Send]{161ec4} at intensamente.wlk:54 exhausted all cases without a match","stack":"Error: [Send]{161ec4} at intensamente.wlk:54 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:05:18.733Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{74d796} at intensamente.wlk:-- exhausted all cases without a match [Return]{74d796} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{74d796} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:05:18.733Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:18.816Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria i{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria i{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:35.530Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria in{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria in{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:35.725Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inh{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inh{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:35.929Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inhe{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inhe{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:36.607Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inher{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inher{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:36.720Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inheri{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inheri{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:36.965Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inherit{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inherit{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:37.119Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inherits{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inherits{\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:37.315Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inherits {\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Alegria inherits {\n | ^\n 50 | var property intensidad\n 51 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:37.390Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [ParameterizedType]{553450} at intensamente.wlk:49 exhausted all cases without a match [ParameterizedType]{553450} at intensamente.wlk:49 exhausted all cases without a match","stack":"Error: [ParameterizedType]{553450} at intensamente.wlk:49 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:05:38.236Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":141,"timestamp":"2024-11-22T13:05:38.381Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:38.381Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:38.447Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:38.613Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:38.688Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:38.848Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:39.004Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:39.153Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:05:39.255Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:05:44.439Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:05:44.757Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:46.150Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:46.308Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:05:47.494Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:47.494Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:05:47.694Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:47.694Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 56 | \n 57 | \n> 58 | }\n | ^\n 59 | \n 60 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 56 | \n 57 | \n> 58 | }\n | ^\n 59 | \n 60 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:47.705Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:47.705Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 56 | \n 57 | \n> 58 | }\n | ^\n 59 | \n 60 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 56 | \n 57 | \n> 58 | }\n | ^\n 59 | \n 60 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:05:47.715Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:47.715Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:48.011Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{fefdf1} at intensamente.wlk:-- exhausted all cases without a match [Return]{fefdf1} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{fefdf1} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:05:58.385Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:05:58.468Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{cbe161} at intensamente.wlk:-- exhausted all cases without a match [Return]{cbe161} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{cbe161} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:05:58.918Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{dc6f00} at intensamente.wlk:-- exhausted all cases without a match [Return]{dc6f00} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{dc6f00} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:05:59.838Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{ac7093} at intensamente.wlk:-- exhausted all cases without a match [Return]{ac7093} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{ac7093} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:00.195Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{37a729} at intensamente.wlk:-- exhausted all cases without a match [Return]{37a729} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{37a729} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:00.526Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{23fdc9} at intensamente.wlk:-- exhausted all cases without a match [Return]{23fdc9} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{23fdc9} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:00.698Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:06:01.030Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2d7cb0} at intensamente.wlk:-- exhausted all cases without a match [Return]{2d7cb0} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2d7cb0} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:01.047Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{a6aa32} at intensamente.wlk:-- exhausted all cases without a match [Return]{a6aa32} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{a6aa32} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:12.760Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:06:12.905Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:06:13.012Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:06:13.100Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2cd4fc} at intensamente.wlk:-- exhausted all cases without a match [Return]{2cd4fc} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2cd4fc} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:13.196Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{c096bd} at intensamente.wlk:-- exhausted all cases without a match [Return]{c096bd} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{c096bd} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:13.530Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b8d6df} at intensamente.wlk:-- exhausted all cases without a match [Return]{b8d6df} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b8d6df} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:13.855Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3733c3} at intensamente.wlk:-- exhausted all cases without a match [Return]{3733c3} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3733c3} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:14.101Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bec771} at intensamente.wlk:-- exhausted all cases without a match [Return]{bec771} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bec771} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:14.406Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:06:14.616Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d6c83c} at intensamente.wlk:-- exhausted all cases without a match [Return]{d6c83c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d6c83c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:14.639Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{6eba30} at intensamente.wlk:-- exhausted all cases without a match [Return]{6eba30} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{6eba30} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:06:15.024Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:06:17.297Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:06:17.488Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:07:44.362Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:07:44.466Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T13:07:45.273Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:07:45.375Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:07:46.470Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:07:47.077Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 57 | \n 58 | method\n> 59 | }\n | ^\n 60 | \n 61 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 57 | \n 58 | method\n> 59 | }\n | ^\n 60 | \n 61 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:07:47.276Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:07:47.391Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 57 | \n 58 | method \n> 59 | }\n | ^\n 60 | \n 61 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 57 | \n 58 | method \n> 59 | }\n | ^\n 60 | \n 61 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:07:47.410Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":136,"timestamp":"2024-11-22T13:07:48.192Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{7e55ad} at intensamente.wlk:58 exhausted all cases without a match [Parameter]{7e55ad} at intensamente.wlk:58 exhausted all cases without a match","stack":"Error: [Parameter]{7e55ad} at intensamente.wlk:58 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:07:50.299Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:07:50.386Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{a6fb79} at intensamente.wlk:58 exhausted all cases without a match [Parameter]{a6fb79} at intensamente.wlk:58 exhausted all cases without a match","stack":"Error: [Parameter]{a6fb79} at intensamente.wlk:58 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:07:50.498Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:07:50.593Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{6d47b6} at intensamente.wlk:58 exhausted all cases without a match [Parameter]{6d47b6} at intensamente.wlk:58 exhausted all cases without a match","stack":"Error: [Parameter]{6d47b6} at intensamente.wlk:58 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:07:50.673Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{295af3} at intensamente.wlk:58 exhausted all cases without a match [Parameter]{295af3} at intensamente.wlk:58 exhausted all cases without a match","stack":"Error: [Parameter]{295af3} at intensamente.wlk:58 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:07:50.979Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T13:07:51.175Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:08:10.073Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:08:10.368Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:11.568Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:11.644Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:08:11.863Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Super]{59faf6} at intensamente.wlk:59 exhausted all cases without a match [Super]{59faf6} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: [Super]{59faf6} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:08:16.344Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:16.435Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:16.512Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:16.576Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:08:16.693Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:16.850Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:16.912Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:08:17.041Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:17.194Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T13:08:18.292Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:18.940Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T13:08:24.030Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:08:31.579Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:08:31.764Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:08:31.958Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:32.222Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:32.406Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:32.897Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:08:33.012Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:08:38.185Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{9d5543} at intensamente.wlk:60 exhausted all cases without a match [If]{9d5543} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{9d5543} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:11.739Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:09:11.834Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:09:12.055Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{0349df} at intensamente.wlk:60 exhausted all cases without a match [If]{0349df} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{0349df} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:12.143Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{d8054f} at intensamente.wlk:60 exhausted all cases without a match [If]{d8054f} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{d8054f} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:12.424Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:09:12.527Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{baba65} at intensamente.wlk:60 exhausted all cases without a match [If]{baba65} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{baba65} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:12.748Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{abe675} at intensamente.wlk:60 exhausted all cases without a match [If]{abe675} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{abe675} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:12.849Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{d8d1ad} at intensamente.wlk:60 exhausted all cases without a match [If]{d8d1ad} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{d8d1ad} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:13.129Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{a5e20e} at intensamente.wlk:60 exhausted all cases without a match [If]{a5e20e} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{a5e20e} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:13.229Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{3cff2b} at intensamente.wlk:60 exhausted all cases without a match [If]{3cff2b} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{3cff2b} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:13.393Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{33b2bc} at intensamente.wlk:60 exhausted all cases without a match [If]{33b2bc} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [If]{33b2bc} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:09:13.566Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:09:28.094Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:09:28.679Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:09:44.688Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:09:44.790Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:09:45.511Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | }\n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | }\n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:09:56.872Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:09:58.460Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | }\n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | }\n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:09:59.167Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:10:00.507Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | }\n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | }\n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:10:01.315Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:10:01.698Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:10:02.186Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:10:06.557Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:10:06.881Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | }\n 63 | }\n> 64 | }\n | ^\n 65 | \n 66 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:10:07.156Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:10:08.168Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T13:10:08.992Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T13:10:10.751Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:10:11.597Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":149,"timestamp":"2024-11-22T13:10:12.726Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:10:54.531Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:10:54.635Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.i [Field]{c816da} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.i [Field]{c816da} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.i [Field]{c816da} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:11:07.240Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:11:07.350Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:11:07.472Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.in [Field]{8cb2f7} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.in [Field]{8cb2f7} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.in [Field]{8cb2f7} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:11:07.493Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.inte [Field]{1ca625} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.inte [Field]{1ca625} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.inte [Field]{1ca625} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:11:07.740Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:11:07.941Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.inten [Field]{dc1833} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.inten [Field]{dc1833} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.inten [Field]{dc1833} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:11:08.035Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensi [Field]{ac3941} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensi [Field]{ac3941} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensi [Field]{ac3941} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:11:08.316Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":140,"timestamp":"2024-11-22T13:11:08.618Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensida [Field]{5f223d} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensida [Field]{5f223d} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensida [Field]{5f223d} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:11:08.842Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e11a5f} at intensamente.wlk:39 exhausted all cases without a match [Send]{e11a5f} at intensamente.wlk:39 exhausted all cases without a match","stack":"Error: [Send]{e11a5f} at intensamente.wlk:39 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:11:18.187Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{ceb662} at intensamente.wlk:-- exhausted all cases without a match [Return]{ceb662} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{ceb662} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:11:18.187Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:11:18.283Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:11:18.358Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:11:18.476Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:11:18.822Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{68927c} at intensamente.wlk:39 exhausted all cases without a match [Send]{68927c} at intensamente.wlk:39 exhausted all cases without a match","stack":"Error: [Send]{68927c} at intensamente.wlk:39 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:11:19.013Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{69c8d5} at intensamente.wlk:-- exhausted all cases without a match [Return]{69c8d5} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{69c8d5} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:11:19.013Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":156,"timestamp":"2024-11-22T13:11:19.264Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:11:19.370Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b55977} at intensamente.wlk:39 exhausted all cases without a match [Send]{b55977} at intensamente.wlk:39 exhausted all cases without a match","stack":"Error: [Send]{b55977} at intensamente.wlk:39 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:11:19.454Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{c35223} at intensamente.wlk:-- exhausted all cases without a match [Return]{c35223} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{c35223} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:11:19.454Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:11:20.225Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":131,"timestamp":"2024-11-22T13:11:22.935Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:11:22.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b14101} at intensamente.wlk:-- exhausted all cases without a match [Send]{b14101} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{b14101} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:11:42.972Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{5ffbe4} at intensamente.wlk:44 exhausted all cases without a match [Assignment]{5ffbe4} at intensamente.wlk:44 exhausted all cases without a match","stack":"Error: [Assignment]{5ffbe4} at intensamente.wlk:44 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:11:42.972Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{ac68e0} at intensamente.wlk:43 exhausted all cases without a match [If]{ac68e0} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [If]{ac68e0} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)","timestamp":"2024-11-22T13:11:42.972Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:11:43.061Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:11:43.253Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:11:43.254Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:11:43.359Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:11:43.466Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a23c06} at intensamente.wlk:-- exhausted all cases without a match [Send]{a23c06} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{a23c06} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:11:43.986Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{73d769} at intensamente.wlk:44 exhausted all cases without a match [Assignment]{73d769} at intensamente.wlk:44 exhausted all cases without a match","stack":"Error: [Assignment]{73d769} at intensamente.wlk:44 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:11:43.986Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{84b38c} at intensamente.wlk:43 exhausted all cases without a match [If]{84b38c} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [If]{84b38c} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)","timestamp":"2024-11-22T13:11:43.986Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{6bdbbd} at intensamente.wlk:-- exhausted all cases without a match [Send]{6bdbbd} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{6bdbbd} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:11:44.399Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{aac560} at intensamente.wlk:44 exhausted all cases without a match [Assignment]{aac560} at intensamente.wlk:44 exhausted all cases without a match","stack":"Error: [Assignment]{aac560} at intensamente.wlk:44 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:11:44.399Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{b08989} at intensamente.wlk:43 exhausted all cases without a match [If]{b08989} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [If]{b08989} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)","timestamp":"2024-11-22T13:11:44.399Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T13:11:44.674Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:12:07.098Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:12:07.304Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:12:07.417Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:12:07.873Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:12:09.031Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:12:09.142Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T13:12:38.791Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:12:39.923Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:13:40.749Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:13:40.853Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:14:10.577Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:14:10.684Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:14:10.787Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:14:10.903Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:14:11.153Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:14:11.268Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":122,"timestamp":"2024-11-22T13:14:11.823Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:14:12.292Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:14:12.400Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:14:38.869Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:38.949Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:39.029Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:14:39.140Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:39.223Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:14:39.331Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:39.399Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:14:39.601Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:39.601Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:14:39.704Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:39.785Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.em [Variable]{172366} at intensamente.wlk:74 exhausted all cases without a match intensamente.em [Variable]{172366} at intensamente.wlk:74 exhausted all cases without a match","stack":"Error: intensamente.em [Variable]{172366} at intensamente.wlk:74 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:14:39.874Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:14:40.087Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:14:40.368Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emoci [Variable]{5df57c} at intensamente.wlk:74 exhausted all cases without a match intensamente.emoci [Variable]{5df57c} at intensamente.wlk:74 exhausted all cases without a match","stack":"Error: intensamente.emoci [Variable]{5df57c} at intensamente.wlk:74 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:14:40.472Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion2 [Variable]{2fe2b0} at intensamente.wlk:74 exhausted all cases without a match intensamente.emocion2 [Variable]{2fe2b0} at intensamente.wlk:74 exhausted all cases without a match","stack":"Error: intensamente.emocion2 [Variable]{2fe2b0} at intensamente.wlk:74 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:14:41.276Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:14:42.339Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:14:42.447Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion2 [Variable]{8bf3f5} at intensamente.wlk:74 exhausted all cases without a match intensamente.emocion2 [Variable]{8bf3f5} at intensamente.wlk:74 exhausted all cases without a match","stack":"Error: intensamente.emocion2 [Variable]{8bf3f5} at intensamente.wlk:74 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:14:42.565Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:14:42.744Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:42.745Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:14:43.456Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:14:43.731Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:43.996Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:14:45.481Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:50.031Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:14:50.366Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:14:50.652Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:14:51.195Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:14:51.320Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:14:52.626Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:14:55.852Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":144,"timestamp":"2024-11-22T13:14:55.996Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:15:12.233Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:15:17.092Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:15:17.452Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:15:17.921Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:15:18.351Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:15:18.991Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:15:21.979Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:15:22.144Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:15:22.211Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T13:15:22.529Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:15:22.529Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:15:22.601Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:15:22.681Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:15:25.982Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"8f91c841-eb0a-413d-bb97-7133830f7a6d","imports":[],"members":[{"id":"4950ae6f-94d0-44af-a99d-02e449a997b1","members":[{"id":"0473a83e-cc5b-457b-a0dc-ba3a708e7551","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"90f97605-c16d-4101-93d0-f25d406bfa50","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"d10b47a8-dba0-474e-a105-4adbb478cb68","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"fd24799d-a8d7-4de2-bed9-c82c0ece8da6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"10f769d3-b4b7-4bbe-a914-540218d64a87","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"30e4d223-57ab-4b74-baa1-476f3acbb43d","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d2b020a5-7103-41bd-b43e-938bdded7b10","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1b0bc8cd-492b-4f71-bba4-ae0c51c53ee4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"7154255a-9321-45e4-8829-4228f125bcf7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"b6e53f62-2d3e-438d-8b2f-ee57b6bc17dc","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"d0dc6bf8-c952-4e4c-9b87-653b23be7c53","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"41f29bc7-6f90-4ec4-b40c-22756bdb1925","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"0aacbe96-0fce-464a-adf6-1a37cf044f41","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2481c464-15d8-487f-8756-5ab60bcea7ce","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ccfb986a-2f00-4938-a5f5-7eb5e8034bd9","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"f1a1bfa1-1ad6-4412-99b9-57ffde8432a2","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"a8323f40-f692-4887-84e2-85b1de8156e9","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"93229ada-80ff-4f5e-938d-918ae2756b60","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"cd44c70f-6cc8-4c0f-8b56-e9a8b42b937a","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"c43d1b49-af7f-4315-a984-625d711c5f99","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"674583fb-a327-42b7-b6cf-ce082995905c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"22c6874b-b915-4740-ade0-7ed13a12dee8","members":[{"body":{"id":"29832c42-d7c5-427f-97a8-3a5b087ad5d8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2147694a-1ab7-4e87-ba3d-005ce17643d1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"04df9d8c-aad5-4217-a839-ee5db262885c","message":"puedeLiberarse","metadata":[],"receiver":{"id":"3884f2ea-f1d9-4bf3-a0a1-98916ef75517","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"66b46d57-d075-46f8-9b26-1d75d26a5796","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"a201a410-b60b-41a4-9fcb-750a97d2c2eb","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"d013d7e1-2a0f-40a5-a116-520a54d284df","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"3b3ab389-a79a-4d78-b84e-724d1762852f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"2b47b7ba-3b6a-45ba-b21c-c3f56b46809d","metadata":[],"reference":{"id":"c74fa986-caf1-487f-900a-bd8271381a96","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"dfbb515e-1f36-44bc-ac03-215a8df2a447","message":"all","metadata":[],"receiver":{"id":"6c746352-b4f1-4ca7-a68e-18b013077721","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}},"id":"83bd4144-fcbf-43c2-95f9-432bcabe74b5","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"d6fa3c37-ee10-4094-a2f4-8a4183246e4a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3637f784-7510-48e5-bfb6-9d47119524d3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":16,"offset":339},"start":{"column":5,"line":16,"offset":292}},"value":{"args":[{"id":"e7099fc6-24e5-4123-afdb-2caa81a710e6","members":[{"body":{"id":"ac604144-d108-4449-b8c3-e5f217793d9b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2a33c76d-238b-4177-88f4-d401250eecc5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"0b4af971-09cf-4d5b-afad-25b927033e17","message":"liberar","metadata":[],"receiver":{"id":"07a2e0ce-38b1-4f60-ab35-e4fc1098d7d0","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":16,"offset":326},"start":{"column":38,"line":16,"offset":325}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":16,"offset":336},"start":{"column":38,"line":16,"offset":325}}}}]},"id":"bf704085-8a30-49a7-ae45-2df8c7d3da31","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"ca615888-9e34-459d-b9f4-d9172e54cda7","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":16,"offset":321},"start":{"column":33,"line":16,"offset":320}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"9260b586-93cc-4a7d-adc0-af369557a9ae","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"f0f581f4-3caf-4340-9f27-3fe533d28467","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":16,"offset":338},"start":{"column":31,"line":16,"offset":318}},"supertypes":[{"args":[],"id":"0e20299a-1962-4ece-becb-03ab832adf33","metadata":[],"reference":{"id":"09324eb2-cf48-4462-9451-9b1cc41a9f72","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"b63c2f77-d2f6-404e-8acb-cd046b68fa95","message":"map","metadata":[],"receiver":{"id":"19d6ce61-a9dc-4c17-aa71-9fd6cce99c35","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":16,"offset":313},"start":{"column":17,"line":16,"offset":304}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":16,"offset":339},"start":{"column":17,"line":16,"offset":304}}},"variable":{"id":"5be2e1e6-4308-4a4b-9308-edbcd8d76c99","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":16,"offset":301},"start":{"column":5,"line":16,"offset":292}}}}],"sourceMap":{"end":{"column":4,"line":17,"offset":344},"start":{"column":24,"line":15,"offset":285}}},"id":"186adc5e-8103-46c3-bcbc-811a106553eb","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":17,"offset":344},"start":{"column":3,"line":15,"offset":264}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":347},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"f1cfd3e8-74c7-4570-bb3e-7b499928c323","members":[{"id":"c5face57-a7b6-4427-a839-899c12c158ff","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":22,"offset":397},"start":{"column":5,"line":22,"offset":374}},"value":{"id":"f2227137-257a-4b2e-b728-310a76a5d1f7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"31597f11-fc55-4367-9374-02e3b1723289","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":435},"start":{"column":5,"line":23,"offset":403}},"value":{"id":"65b14900-c5c8-4db7-81e8-d80e79638cb3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":435},"start":{"column":36,"line":23,"offset":434}},"value":0}},{"id":"c3dad668-6842-4534-b25f-0c0d2d13db90","isConstant":true,"isProperty":false,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":24,"offset":469},"start":{"column":5,"line":24,"offset":441}},"value":{"id":"a7e9fcea-8c9b-4df3-aaf4-a823b588171c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":24,"offset":469},"start":{"column":32,"line":24,"offset":468}},"value":5}},{"body":{"id":"a72cb69d-f5a1-4b27-81e7-3064a145ce19","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4da7ad16-65ca-4452-af60-862a0026e914","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"5ef625df-1928-48d8-b64f-fc3c3b1478d1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":566},"start":{"column":29,"line":27,"offset":562}},"value":true}}],"sourceMap":{"end":{"column":33,"line":27,"offset":566},"start":{"column":29,"line":27,"offset":562}}},"id":"4b78c831-c904-4766-9a54-f7ee82a79e47","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":566},"start":{"column":3,"line":27,"offset":536}}},{"body":{"id":"c11a713c-b4c3-4da1-9dc6-d7ba01e6076f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8d6e2c1c-3318-42ca-a96e-1319d0b7ab8c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":622},"start":{"column":5,"line":30,"offset":602}},"value":{"args":[],"id":"d01c70fb-5103-4b67-b774-e56fca62392e","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"2492de7b-917d-49bf-8048-08df18e0480b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":622},"start":{"column":24,"line":30,"offset":621}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":622},"start":{"column":22,"line":30,"offset":619}}},"variable":{"id":"51f4c5b7-b706-4a3b-bc1b-6998cd6ea703","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":30,"offset":617},"start":{"column":5,"line":30,"offset":602}}}}],"sourceMap":{"end":{"column":4,"line":31,"offset":627},"start":{"column":26,"line":29,"offset":595}}},"id":"6dc7eea8-7e3a-422b-a8c0-72dccdf6aa39","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"a0c7b9ae-4166-4179-b591-5a2bef1760a3","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":29,"offset":593},"start":{"column":18,"line":29,"offset":587}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":31,"offset":627},"start":{"column":3,"line":29,"offset":572}}},{"body":{"id":"61726756-df0c-4318-9b68-deda8bd48194","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"655a0240-e930-4fa9-89fb-bf41b4e38452","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"a4f4869f-bace-48d8-b21b-a4ea2a31f696","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0c086dca-ae8b-4934-864f-a6e432b6ae7e","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"8d913d30-e9db-435d-8389-7946d24051fb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bc8ee2f4-8792-4b7f-91af-120e73184cfa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"40052ab7-5b01-4460-a655-ecf5a2aee87b","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"efe703ca-5b81-45c4-91a9-a8f02e1cfd34","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"2c2596ac-d9ff-4689-8185-2397372c811d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"fa50bdd4-24bf-4182-9e3a-6ca9f679eaae","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ff3d133e-4c01-4acb-b6d5-a32d9271bf87","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"4dea693d-fb42-465e-a3b1-8db67e559393","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"7156367a-84a6-4bce-9fe3-4b63c4f9302f","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"e4fb37b7-3545-4bce-9ee5-45bb628e1b98","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"457fec4c-fcd0-454a-ac1d-ed920ccc28f1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"749c4313-9a24-493c-8277-35dd16ad7009","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"da39fac7-a431-4f9d-9d9c-9737b1d28d22","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"5b6fcb95-ea81-4eca-a440-51cc04c04633","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"c927d26f-b25b-428d-8639-05f3f8b9aea2","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"243d420e-f957-4c6c-be9e-408462e358a3","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":32,"offset":630},"start":{"column":1,"line":20,"offset":351}},"supertypes":[]},{"id":"dd24111d-1208-453a-918a-95935b6556a7","members":[{"id":"ea4402ca-d1f1-487f-acc8-d09289ef415b","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":688},"start":{"column":5,"line":35,"offset":669}},"value":{"id":"9b13d3ce-09d7-4c04-95b5-48671925b29b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":35,"offset":688},"start":{"column":22,"line":35,"offset":686}},"value":[{"id":"d8e82431-3979-4062-9958-7eab2fedb556","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"1157a771-127c-4558-9a18-68db2efbde30","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f9934e08-9b20-4db3-8cc2-6a574897ffc5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"06529a83-5a24-48c9-98c8-824b166fe244","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":36,"offset":716},"start":{"column":24,"line":36,"offset":713}},"value":100}}],"sourceMap":{"end":{"column":27,"line":36,"offset":716},"start":{"column":24,"line":36,"offset":713}}},"id":"6ef0f16e-9611-4210-86ee-76accccda48d","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":36,"offset":716},"start":{"column":5,"line":36,"offset":694}}},{"body":{"id":"91dd5436-c49a-48ca-b6b7-2069b86ebf96","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6bebce5c-11bf-4adc-9db0-2a5d15bc2fa3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"2b7fa67e-0f43-4560-a6c6-f41ae2fe5a98","message":"intensidadElevada","metadata":[],"receiver":{"id":"5b609994-6968-4f11-b6b8-bc12e8cac034","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":38,"offset":790},"start":{"column":67,"line":38,"offset":786}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":810},"start":{"column":67,"line":38,"offset":786}}}],"id":"88536b8d-41d9-4f1c-8f7e-d02fcbb2961c","message":"and","metadata":[],"receiver":{"args":[],"id":"6dacc103-820f-4233-a1f6-0947d69107ca","message":"tienePalabrota7","metadata":[],"receiver":{"id":"1e3a17ad-b875-4913-8a5b-a633847df9d0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":38,"offset":763},"start":{"column":40,"line":38,"offset":759}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":38,"offset":781},"start":{"column":40,"line":38,"offset":759}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":810},"start":{"column":40,"line":38,"offset":759}}}}],"sourceMap":{"end":{"column":91,"line":38,"offset":810},"start":{"column":40,"line":38,"offset":759}}},"id":"d456f650-719e-4de9-a6a3-5f7a9b406c9a","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":38,"offset":810},"start":{"column":5,"line":38,"offset":724}}},{"body":{"id":"bc90999a-f1a0-41da-9a88-b5ebe0fcc688","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"aa024a8b-a31f-4a2f-b499-3bbec5a964b7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"36c327e1-6ae2-4715-8192-d530a38a7873","members":[{"body":{"id":"8ad28604-a294-494e-8be8-d4480075b4eb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4ccdc88b-d5a7-4886-9617-796b18ba58cb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b6c708a7-2c8f-4de1-b5dd-bbdde532b9fa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":871},"start":{"column":59,"line":39,"offset":870}},"value":7}],"id":"e1260ca4-9b93-4a56-ba66-79d76d999453","message":">","metadata":[],"receiver":{"args":[],"id":"14743d7f-a4fc-4f44-8f23-a949604f5466","message":"size","metadata":[],"receiver":{"id":"ec4e5b65-e320-4eba-8026-25d5bf4e3718","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":39,"offset":862},"start":{"column":50,"line":39,"offset":861}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":39,"offset":869},"start":{"column":50,"line":39,"offset":861}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":39,"offset":871},"start":{"column":50,"line":39,"offset":861}}}}]},"id":"6aa3ef6b-1d20-48b9-8268-35214dde849f","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"3d722ad1-dff7-40ed-8d70-f25f667812c8","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":39,"offset":859},"start":{"column":47,"line":39,"offset":858}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"cc79683b-fa1a-4d10-a6dc-935d45e635f7","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"98af38a4-10df-4344-9884-a482ab8e4b1f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":39,"offset":872},"start":{"column":46,"line":39,"offset":857}},"supertypes":[{"args":[],"id":"a6a9340e-26ed-4ac0-99ad-b2b90354e48f","metadata":[],"reference":{"id":"83706f30-71b3-4db7-96e6-9e17584b5255","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"552e971e-32da-4b09-962f-f7aa7319dcfe","message":"any","metadata":[],"receiver":{"id":"87af1a46-294e-490f-8af1-913d2e6cfedc","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":39,"offset":853},"start":{"column":32,"line":39,"offset":843}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":872},"start":{"column":32,"line":39,"offset":843}}}}],"sourceMap":{"end":{"column":61,"line":39,"offset":872},"start":{"column":32,"line":39,"offset":843}}},"id":"5915c4b8-4843-4937-964b-22701eff6c59","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":39,"offset":872},"start":{"column":5,"line":39,"offset":816}}},{"body":{"id":"db87e588-c328-44cc-8771-e28671819fb1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e4882777-1678-4b27-a2b9-185a6be59ee3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1aa65ec6-544d-4dd7-adaa-be0635483c54","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":936},"start":{"column":45,"line":40,"offset":918}}}],"id":"b2a787d1-33b9-486e-9176-0ea2367b3235","message":">","metadata":[],"receiver":{"id":"214b68dc-5715-40eb-aef7-6cada5e1d12f","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":40,"offset":917},"start":{"column":34,"line":40,"offset":907}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":936},"start":{"column":34,"line":40,"offset":907}}}}],"sourceMap":{"end":{"column":63,"line":40,"offset":936},"start":{"column":34,"line":40,"offset":907}}},"id":"dc96003b-f366-4938-a032-8e5fdb7a6c08","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":40,"offset":936},"start":{"column":5,"line":40,"offset":878}}},{"body":{"id":"528ba77e-24f9-4671-9a8a-0d4921005152","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"34092afe-469a-4b58-bfca-7df1ab49f68e","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":43,"offset":995},"start":{"column":11,"line":43,"offset":989}}}],"id":"805ccb79-918c-4725-b2b3-926d9ebc13b8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":43,"offset":996},"start":{"column":5,"line":43,"offset":983}}},{"condition":{"args":[],"id":"12d5ab7a-9e3a-4c68-aeef-463212a6a44c","message":"puedeLiberarse","metadata":[],"receiver":{"id":"75ff6d50-1a3f-4fc6-ba55-d17ac953dd49","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":44,"offset":1010},"start":{"column":8,"line":44,"offset":1006}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":44,"offset":1027},"start":{"column":8,"line":44,"offset":1006}}},"elseBody":{"id":"11365f99-eb6c-484f-a421-0a1f0959dc9c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"4e637a1e-63fe-4967-894c-ae07d1bfa554","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":46,"offset":1076},"start":{"column":5,"line":44,"offset":1003}},"thenBody":{"id":"b84ddfe8-a0db-4be1-afe0-47d9deaf73cb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"173dc42e-aff4-4f82-b59d-73c5bdb17036","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1069},"start":{"column":9,"line":45,"offset":1039}},"value":{"args":[{"args":[],"id":"f0f8ddd6-bef2-42c8-9533-b5a04ae1bad4","message":"impacto","metadata":[],"receiver":{"id":"ec1d46e8-937d-4205-927a-f5830e71ff0f","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":45,"offset":1059},"start":{"column":23,"line":45,"offset":1053}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":45,"offset":1069},"start":{"column":23,"line":45,"offset":1053}}}],"id":"771847d2-a3fd-4a20-9fd5-576c5dc5d658","message":"-","metadata":[],"receiver":{"id":"7fc2c337-d9d4-4957-90bf-bd5476cac2e9","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1049},"start":{"column":9,"line":45,"offset":1039}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"713200f2-10f7-4157-963a-913f487e0946","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":45,"offset":1049},"start":{"column":9,"line":45,"offset":1039}}}}],"sourceMap":{"end":{"column":6,"line":46,"offset":1076},"start":{"column":30,"line":44,"offset":1028}}}}],"sourceMap":{"end":{"column":4,"line":47,"offset":1082},"start":{"column":37,"line":42,"offset":976}}},"id":"819e098f-09b4-4ffc-9630-31a96376efd9","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"daefdca9-3ec1-4698-855f-3fb221d8eaec","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":42,"offset":974},"start":{"column":29,"line":42,"offset":968}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":47,"offset":1082},"start":{"column":5,"line":42,"offset":944}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":48,"offset":1085},"start":{"column":1,"line":34,"offset":634}},"supertypes":[{"args":[],"id":"7a432479-7dad-4c4f-9b5c-d74a7acc2fc2","metadata":[],"reference":{"id":"5c583111-b603-4008-9653-58046022e3d3","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":662},"start":{"column":22,"line":34,"offset":655}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":34,"offset":662},"start":{"column":22,"line":34,"offset":655}}}]},{"id":"ece2579a-fa9a-4aca-a010-d119a55f0352","members":[{"body":{"id":"325fa6c3-d442-4182-a7b9-e258dbd8a85b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0e2148de-403c-46ae-9ab2-035668f89c7f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":53,"offset":1196},"start":{"column":9,"line":53,"offset":1172}},"value":{"args":[],"id":"bbb3219c-bc83-49f3-b2d3-4d0a91a3ae13","message":"abs","metadata":[],"receiver":{"id":"d3c2a703-997a-4ed3-b74d-9e88a0fe384a","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":53,"offset":1190},"start":{"column":22,"line":53,"offset":1185}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":53,"offset":1196},"start":{"column":22,"line":53,"offset":1185}}},"variable":{"id":"2b2b2d5e-d37a-4451-bc04-eaeb35d8cac5","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":53,"offset":1182},"start":{"column":9,"line":53,"offset":1172}}}}],"sourceMap":{"end":{"column":6,"line":54,"offset":1203},"start":{"column":38,"line":52,"offset":1161}}},"id":"8add0e97-a001-4760-99a1-41e047996174","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"96ab4523-fcd5-4366-83fc-434dee483594","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":52,"offset":1160},"start":{"column":32,"line":52,"offset":1155}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":54,"offset":1203},"start":{"column":5,"line":52,"offset":1128}}},{"body":{"id":"63e51163-1513-48ac-ab98-1145fe977966","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"da71e980-d70c-49b9-9d8d-a7461f0cd03f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d417ab78-7086-4670-b400-9d45c292bd44","message":"eventosPar","metadata":[],"receiver":{"id":"0d76bab4-1872-4daa-aee4-ae25ccbac571","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":55,"offset":1276},"start":{"column":68,"line":55,"offset":1272}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":55,"offset":1289},"start":{"column":68,"line":55,"offset":1272}}}],"id":"19706420-aa0b-444a-8b0a-1dfd82be0589","message":"&&","metadata":[],"receiver":{"args":[],"id":"6ff0bb2d-dab6-43e3-91e2-ff2028a03880","message":"intensidadElevada","metadata":[],"receiver":{"id":"dacedfd1-8fee-4586-b40e-dec17f1b4740","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":55,"offset":1248},"start":{"column":40,"line":55,"offset":1244}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":55,"offset":1268},"start":{"column":40,"line":55,"offset":1244}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":55,"offset":1289},"start":{"column":40,"line":55,"offset":1244}}}}],"sourceMap":{"end":{"column":85,"line":55,"offset":1289},"start":{"column":40,"line":55,"offset":1244}}},"id":"2b7de506-c71f-4d70-b3d9-8a862d5389c7","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":55,"offset":1289},"start":{"column":5,"line":55,"offset":1209}}},{"body":{"id":"fe2a6d00-50cf-4b0c-8987-1b20539227db","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cd034359-817a-471a-b6ec-15264d244b44","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"77541743-edff-4ddc-bf1c-4769aeffdfd3","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":57,"offset":1355},"start":{"column":45,"line":57,"offset":1337}}}],"id":"d2c4d2dc-b369-457a-b6f7-f1645a9fd566","message":">","metadata":[],"receiver":{"id":"86030f6a-2517-43ab-87da-90ddaadf61f2","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":57,"offset":1336},"start":{"column":34,"line":57,"offset":1326}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":57,"offset":1355},"start":{"column":34,"line":57,"offset":1326}}}}],"sourceMap":{"end":{"column":63,"line":57,"offset":1355},"start":{"column":34,"line":57,"offset":1326}}},"id":"da1a9a3f-dedc-446e-a74c-c9f6cce99357","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":57,"offset":1355},"start":{"column":5,"line":57,"offset":1297}}},{"body":{"id":"5ce0a622-3513-49a7-8572-8323ef8be2b1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"03a07720-d203-47a6-844d-6455ca1976c6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"43c4504c-1895-4188-9191-2a4320f06a76","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":58,"offset":1405},"start":{"column":48,"line":58,"offset":1404}},"value":0}],"id":"e0c05247-a0bf-4f3b-aab7-25c85846b256","message":"==","metadata":[],"receiver":{"args":[{"id":"6b3aa56f-9357-4cc3-96f1-e361bc0011e1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":58,"offset":1400},"start":{"column":43,"line":58,"offset":1399}},"value":2}],"id":"fc6d12ac-c56f-499b-aabe-80c1281832d0","message":"%","metadata":[],"receiver":{"id":"256e8e59-ddbe-4bce-90f6-e8276b9ed46b","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":58,"offset":1398},"start":{"column":27,"line":58,"offset":1383}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":58,"offset":1400},"start":{"column":27,"line":58,"offset":1383}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":58,"offset":1405},"start":{"column":27,"line":58,"offset":1383}}}}],"sourceMap":{"end":{"column":49,"line":58,"offset":1405},"start":{"column":27,"line":58,"offset":1383}}},"id":"442a65ad-4075-40c6-b047-1f08f7f0ec6f","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":58,"offset":1405},"start":{"column":5,"line":58,"offset":1361}}},{"body":{"id":"bb08f68e-7b39-4f92-a232-f2383b92aac4","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"7fc3be18-2919-41e3-b977-7ed46b21b661","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":61,"offset":1467},"start":{"column":15,"line":61,"offset":1461}}}],"id":"36e64f23-f775-4c54-b7f3-9233112c6040","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":61,"offset":1468},"start":{"column":9,"line":61,"offset":1455}}},{"condition":{"args":[],"id":"d0227fb2-abdc-41f4-9b80-74274137fdfe","message":"puedeLiberarse","metadata":[],"receiver":{"id":"19cfb5af-b78f-4042-991c-d9cfb72400a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":62,"offset":1485},"start":{"column":12,"line":62,"offset":1481}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":62,"offset":1502},"start":{"column":12,"line":62,"offset":1481}}},"elseBody":{"id":"b5f2bb3b-9c42-4eee-98ae-514904cf67b1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"2f6745c7-421e-42b5-8221-f6a2447434d3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":10,"line":64,"offset":1559},"start":{"column":9,"line":62,"offset":1478}},"thenBody":{"id":"18059079-b519-40e9-8a5c-407a8a2be391","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"fa81119d-ea58-4d55-b93f-c0960ddd6128","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":63,"offset":1548},"start":{"column":13,"line":63,"offset":1518}},"value":{"args":[{"args":[],"id":"ea4d9a70-344e-4b63-b96c-da0e5c74d771","message":"impacto","metadata":[],"receiver":{"id":"f154f573-172d-48c3-b286-dc0508b7f8a9","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":63,"offset":1538},"start":{"column":27,"line":63,"offset":1532}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":63,"offset":1548},"start":{"column":27,"line":63,"offset":1532}}}],"id":"e2e406d8-7fa3-434b-86fd-a31154f037b3","message":"-","metadata":[],"receiver":{"id":"1d5885f3-3774-4831-aca3-8ac8c068877c","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":63,"offset":1528},"start":{"column":13,"line":63,"offset":1518}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e91b0eb4-2091-4335-910e-511a5203646e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":63,"offset":1528},"start":{"column":13,"line":63,"offset":1518}}}}],"sourceMap":{"end":{"column":10,"line":64,"offset":1559},"start":{"column":34,"line":62,"offset":1503}}}}],"sourceMap":{"end":{"column":6,"line":65,"offset":1566},"start":{"column":36,"line":60,"offset":1444}}},"id":"421f456b-335a-4152-8c40-f1b140d9d2f3","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"55ea07f5-130c-48eb-bc22-0d5331c80759","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":60,"offset":1443},"start":{"column":29,"line":60,"offset":1437}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":65,"offset":1566},"start":{"column":5,"line":60,"offset":1413}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":66,"offset":1569},"start":{"column":1,"line":50,"offset":1089}},"supertypes":[{"args":[],"id":"b2678382-9613-4b98-949a-ff00ed2c88dd","metadata":[],"reference":{"id":"2622a154-c874-488f-8cd9-a0b996bff07c","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":50,"offset":1119},"start":{"column":24,"line":50,"offset":1112}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":50,"offset":1119},"start":{"column":24,"line":50,"offset":1112}}}]},{"id":"96889cb4-f46e-4f39-ac28-59c73af09e03","members":[{"id":"3c4a3cfa-8da6-4724-b367-3087b7a329fa","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":70,"offset":1616},"start":{"column":5,"line":70,"offset":1594}},"value":{"id":"b019375a-9a77-4c57-9cee-e0fb0bd379fa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"cb49331f-efb0-44ba-9353-9cc7b6a8e880","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e9dc23f8-528d-4c0d-a2b2-bc7bb0e69b70","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"0cb3b908-9af0-4a3a-8012-4c811258619a","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"6147d0f4-f6f3-4f93-970b-0bed1e04c3a4","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":71,"offset":1619},"start":{"column":1,"line":69,"offset":1575}},"supertypes":[]},{"id":"06bac784-9cf6-46bd-941c-9fca8831bd37","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":73,"offset":1660},"start":{"column":1,"line":73,"offset":1623}},"value":{"args":[{"id":"f2e0bb05-387c-405a-a561-894b1341fc9e","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":73,"offset":1659},"start":{"column":27,"line":73,"offset":1649}},"value":{"id":"a5fa27fb-3534-410c-b9d2-c0ae5950ba15","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":73,"offset":1659},"start":{"column":35,"line":73,"offset":1657}},"value":10}}],"id":"b9034ac1-6223-4457-a7ea-619b9fbaf717","instantiated":{"id":"29ffa88e-124a-477d-a571-b6724e185e61","metadata":[],"name":"Evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":73,"offset":1648},"start":{"column":20,"line":73,"offset":1642}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":73,"offset":1660},"start":{"column":16,"line":73,"offset":1638}}}},{"id":"ab95f4ab-6b89-47bb-bd31-ae7bdb6b32da","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":74,"offset":1716},"start":{"column":1,"line":74,"offset":1662}},"value":{"args":[{"id":"13caf5e2-462d-4f58-aadf-683eced8808d","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":74,"offset":1715},"start":{"column":28,"line":74,"offset":1689}},"value":{"id":"f2859705-c0e7-4579-8ff7-924067c16589","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":74,"offset":1715},"start":{"column":39,"line":74,"offset":1700}},"value":[{"id":"0406121f-cc6c-4c60-acdf-01a77e4eeb7b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"d42581af-75fc-4f50-a320-972920a6cc9c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":74,"offset":1714},"start":{"column":40,"line":74,"offset":1701}},"value":"aaaaaaaaaaa"}]]}}],"id":"f153af43-a491-401f-b569-389e89ae7120","instantiated":{"id":"04361add-2f28-49e2-b4ba-e29e95f670c3","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":74,"offset":1688},"start":{"column":22,"line":74,"offset":1683}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":74,"offset":1716},"start":{"column":18,"line":74,"offset":1679}}}},{"id":"c6cfe550-57a1-4b5c-b2e3-700bdddb5c69","isConstant":true,"metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":75,"offset":1738},"start":{"column":1,"line":75,"offset":1718}},"value":{"id":"328e1751-6204-4e35-889f-24107ce79e06","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":75,"offset":1738},"start":{"column":18,"line":75,"offset":1735}}}},{"id":"059494c4-f202-48d9-9036-b36ff53b78a6","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":76,"offset":1819},"start":{"column":1,"line":76,"offset":1763}},"value":{"args":[{"id":"ce1e2499-6623-4968-93e9-af92add7264d","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":76,"offset":1796},"start":{"column":28,"line":76,"offset":1790}},"value":{"id":"a4cc27e2-b309-42b6-a793-127bf07e8a06","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":76,"offset":1796},"start":{"column":33,"line":76,"offset":1795}},"value":2}},{"id":"518d54e4-0e52-428b-8383-23ad3086013a","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":76,"offset":1818},"start":{"column":36,"line":76,"offset":1798}},"value":{"id":"7353db42-3e6c-4161-a6f3-2deba863ebcf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":76,"offset":1818},"start":{"column":46,"line":76,"offset":1808}},"value":[{"id":"751ac478-890d-48fc-9bed-21c1064ef84e","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"1a52d5f4-2238-42e3-923e-7c645661c6cd","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":76,"offset":1817},"start":{"column":47,"line":76,"offset":1809}}}]]}}],"id":"6079b716-a6de-4bf9-9b03-b4767cc11a8d","instantiated":{"id":"9cd972f8-8dd4-43d2-b841-939dcecad3f0","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":76,"offset":1788},"start":{"column":19,"line":76,"offset":1781}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":76,"offset":1819},"start":{"column":15,"line":76,"offset":1777}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":44,"line":75,"offset":1761},"start":{"column":22,"line":75,"offset":1739}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:15:33.180Z"} diff --git a/log/wollok4.log b/log/wollok4.log new file mode 100644 index 0000000..320f8ab --- /dev/null +++ b/log/wollok4.log @@ -0,0 +1,718 @@ +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:15:59.665Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:16:00.063Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:16:00.295Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:16:00.414Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:16:00.546Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:16:01.012Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:16:01.292Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:16:03.065Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T13:16:21.008Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:16:21.264Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:16:21.534Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:16:53.401Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:16:53.401Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:16:53.513Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:16:53.603Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:16:53.670Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:16:53.923Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:16:54.014Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.va [Field]{d794c2} at intensamente.wlk:52 exhausted all cases without a match intensamente.Alegria.va [Field]{d794c2} at intensamente.wlk:52 exhausted all cases without a match","stack":"Error: intensamente.Alegria.va [Field]{d794c2} at intensamente.wlk:52 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:16:54.362Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:16:59.717Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:17:00.268Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":177,"timestamp":"2024-11-22T13:17:00.694Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:17:00.888Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:17:01.646Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:17:39.241Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T13:17:39.362Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:18:31.795Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:18:33.042Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:19:16.365Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T13:19:40.108Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":171,"timestamp":"2024-11-22T13:19:40.280Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:19:42.034Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":172,"timestamp":"2024-11-22T13:19:42.207Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:19:46.734Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:19:47.805Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:19:47.907Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:20:11.062Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:20:11.172Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:20:23.593Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:20:23.698Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:20:23.803Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:20:24.088Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:20:24.535Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:20:31.879Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:20:36.071Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:20:40.825Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":158,"timestamp":"2024-11-22T13:20:41.153Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:20:41.255Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":155,"timestamp":"2024-11-22T13:20:41.475Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:20:43.261Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:21:04.822Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:21:05.549Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:21:24.754Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:24.857Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T13:21:25.113Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:25.892Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:21:26.003Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:26.003Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:26.088Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":125,"timestamp":"2024-11-22T13:21:26.213Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:26.383Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:26.417Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:26.422Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class \n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class \n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:26.541Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class t\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class t\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:26.799Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tr\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tr\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.001Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.136Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class trie\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class trie\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.232Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.485Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tris\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tris\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.607Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class trist\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class trist\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.807Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:27.840Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristea\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristea\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:28.282Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:28.628Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristez\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristez\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:28.707Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristeza\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristeza\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:28.820Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristez\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tristez\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:29.503Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:29.676Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class trist\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class trist\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:29.823Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tris\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tris\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:29.954Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:30.093Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tr\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class tr\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:30.184Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class t\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class t\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:30.336Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class \n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class \n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:30.414Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class T\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class T\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:30.617Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tr\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tr\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:31.240Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tri\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:31.389Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tris\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tris\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:31.470Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Trist\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Trist\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:31.717Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Triste\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:31.829Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tristez\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tristez\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:32.222Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tristeza\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 68 | class Tristeza\n 69 | \n> 70 | class Evento{\n | ^\n 71 | const property impacto\n 72 | }\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:32.314Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:21:33.632Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:21:34.942Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:21:35.067Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:35.067Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:35.157Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:35.249Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:21:35.365Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:21:35.726Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:35.830Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:21:36.898Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":160,"timestamp":"2024-11-22T13:21:37.208Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T13:21:37.694Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:21:37.806Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:21:40.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:41.157Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:21:41.273Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:41.435Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:21:41.634Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:21:42.102Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:21:42.220Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:42.744Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:42.744Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:42.823Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:42.894Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:21:43.093Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:43.181Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:21:44.629Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:44.634Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:21:44.739Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:44.739Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:21:44.852Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:21:45.049Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:45.050Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:45.155Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:21:45.261Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:21:46.886Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:21:47.173Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 67 | \n 68 | class Tristeza{\n> 69 | var property = causa=\n | ^\n 70 | }\n 71 | \n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 67 | \n 68 | class Tristeza{\n> 69 | var property = causa=\n | ^\n 70 | }\n 71 | \n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:21:47.266Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.c [Field]{d12fa0} at intensamente.wlk:69 exhausted all cases without a match intensamente.Tristeza.c [Field]{d12fa0} at intensamente.wlk:69 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.c [Field]{d12fa0} at intensamente.wlk:69 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:21:47.536Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:21:47.708Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:47.710Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.caus [Field]{74f50a} at intensamente.wlk:69 exhausted all cases without a match intensamente.Tristeza.caus [Field]{74f50a} at intensamente.wlk:69 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.caus [Field]{74f50a} at intensamente.wlk:69 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:21:48.088Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:21:49.446Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:50.058Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:50.351Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":155,"timestamp":"2024-11-22T13:21:50.674Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.causa [Field]{ea9678} at intensamente.wlk:69 exhausted all cases without a match intensamente.Tristeza.causa [Field]{ea9678} at intensamente.wlk:69 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.causa [Field]{ea9678} at intensamente.wlk:69 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:21:50.698Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:21:50.886Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:21:50.973Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.causa [Field]{f87824} at intensamente.wlk:69 exhausted all cases without a match intensamente.Tristeza.causa [Field]{f87824} at intensamente.wlk:69 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.causa [Field]{f87824} at intensamente.wlk:69 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:21:51.174Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:21:51.620Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:21:51.749Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.causa [Field]{d52690} at intensamente.wlk:69 exhausted all cases without a match intensamente.Tristeza.causa [Field]{d52690} at intensamente.wlk:69 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.causa [Field]{d52690} at intensamente.wlk:69 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:21:51.852Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:21:52.223Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:21:52.338Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:21:53.584Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '.', '..', '..<', '/', ';', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', '@', 'and', 'const', 'method', 'or', 'override', 'var', '{', '||', '}', /\\s/, any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:22:04.884Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T13:22:06.701Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:22:06.815Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:22:07.919Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":176,"timestamp":"2024-11-22T13:22:30.492Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":198,"timestamp":"2024-11-22T13:22:30.693Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":167,"timestamp":"2024-11-22T13:22:30.900Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T13:22:31.071Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":164,"timestamp":"2024-11-22T13:22:31.242Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:22:31.360Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":187,"timestamp":"2024-11-22T13:22:31.626Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":180,"timestamp":"2024-11-22T13:22:31.807Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T13:22:31.930Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":174,"timestamp":"2024-11-22T13:22:32.113Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":160,"timestamp":"2024-11-22T13:22:32.307Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":208,"timestamp":"2024-11-22T13:22:32.555Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":180,"timestamp":"2024-11-22T13:22:32.736Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:22:32.856Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":189,"timestamp":"2024-11-22T13:22:33.061Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T13:22:33.185Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":173,"timestamp":"2024-11-22T13:22:33.368Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":160,"timestamp":"2024-11-22T13:22:33.528Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:22:33.662Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:22:33.783Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":196,"timestamp":"2024-11-22T13:22:33.987Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":145,"timestamp":"2024-11-22T13:22:34.133Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:22:34.250Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:22:34.352Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:22:34.531Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:22:34.912Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | method\n 72 | \n> 73 | }\n | ^\n 74 | \n 75 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | method\n 72 | \n> 73 | }\n | ^\n 74 | \n 75 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:22:35.348Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | method \n 72 | \n> 73 | }\n | ^\n 74 | \n 75 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | method \n 72 | \n> 73 | }\n | ^\n 74 | \n 75 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:22:35.359Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:22:35.468Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:22:35.468Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":174,"timestamp":"2024-11-22T13:22:36.734Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:22:36.931Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:22:37.033Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:22:37.246Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:22:40.003Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:22:40.277Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:22:41.017Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":189,"timestamp":"2024-11-22T13:22:41.561Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:22:54.491Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:22:54.653Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:22:54.717Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:22:54.834Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:22:54.997Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T13:22:57.383Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:22:58.231Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:22:58.479Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:22:58.759Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:23:04.212Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":224,"timestamp":"2024-11-22T13:23:18.483Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"cf6bd39f-1c0b-4c4d-8d49-851f3229638a","isOverride":false,"metadata":[],"name":"override","parameters":[],"problems":[{"code":"malformedMember","sourceMap":{"end":{"column":61,"line":71,"offset":1671},"start":{"column":20,"line":71,"offset":1630}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":71,"offset":1671},"start":{"column":5,"line":71,"offset":1615}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at Array.map ()\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:10585\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:8360\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770","timestamp":"2024-11-22T13:23:48.219Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":173,"timestamp":"2024-11-22T13:23:48.754Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":160,"timestamp":"2024-11-22T13:23:48.916Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza i{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza i{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:48.999Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza in{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza in{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:49.145Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inh{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inh{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:49.346Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inhe{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inhe{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:49.528Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inher{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inher{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:49.620Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inheri{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inheri{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:49.807Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherit{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherit{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:50.023Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherits{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherits{\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:50.181Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherits {\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherits {\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:50.301Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T13:23:50.627Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [ParameterizedType]{9d52be} at intensamente.wlk:68 exhausted all cases without a match [ParameterizedType]{9d52be} at intensamente.wlk:68 exhausted all cases without a match","stack":"Error: [ParameterizedType]{9d52be} at intensamente.wlk:68 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:23:50.662Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:23:50.766Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":203,"timestamp":"2024-11-22T13:23:50.969Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:50.970Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:23:51.098Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:23:51.223Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:51.223Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherits {\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 66 | \n 67 | \n> 68 | class Tristeza inherits {\n | ^\n 69 | var property causa = \"melancolia\"\n 70 | \n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:23:51.236Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [ParameterizedType]{d891f7} at intensamente.wlk:68 exhausted all cases without a match [ParameterizedType]{d891f7} at intensamente.wlk:68 exhausted all cases without a match","stack":"Error: [ParameterizedType]{d891f7} at intensamente.wlk:68 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:23:51.329Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:23:51.550Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:23:51.679Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:51.679Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:51.764Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:51.935Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:52.005Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:52.083Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:23:52.238Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T13:23:52.556Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":205,"timestamp":"2024-11-22T13:24:19.784Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":194,"timestamp":"2024-11-22T13:24:19.979Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T13:24:23.104Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:24:24.230Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":163,"timestamp":"2024-11-22T13:24:48.285Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":236,"timestamp":"2024-11-22T13:24:48.522Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":179,"timestamp":"2024-11-22T13:24:48.744Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":207,"timestamp":"2024-11-22T13:24:48.952Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":146,"timestamp":"2024-11-22T13:24:49.105Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:24:49.257Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":173,"timestamp":"2024-11-22T13:24:49.431Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":159,"timestamp":"2024-11-22T13:24:49.591Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:24:49.714Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":244,"timestamp":"2024-11-22T13:24:49.959Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":147,"timestamp":"2024-11-22T13:24:50.181Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:24:50.548Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:24:50.657Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:24:51.032Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:24:51.539Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:51.687Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method\n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method\n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:24:51.698Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:51.698Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method \n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method \n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:24:51.709Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:51.710Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method\n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method\n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:24:51.988Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:51.988Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method \n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | override method \n 74 | \n> 75 | }\n | ^\n 76 | \n 77 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:24:52.205Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:52.205Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{80c11c} at intensamente.wlk:73 exhausted all cases without a match [Parameter]{80c11c} at intensamente.wlk:73 exhausted all cases without a match","stack":"Error: [Parameter]{80c11c} at intensamente.wlk:73 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:24:54.550Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:54.635Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{7551c3} at intensamente.wlk:73 exhausted all cases without a match [Parameter]{7551c3} at intensamente.wlk:73 exhausted all cases without a match","stack":"Error: [Parameter]{7551c3} at intensamente.wlk:73 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:24:54.741Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:24:54.839Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{5caa65} at intensamente.wlk:73 exhausted all cases without a match [Parameter]{5caa65} at intensamente.wlk:73 exhausted all cases without a match","stack":"Error: [Parameter]{5caa65} at intensamente.wlk:73 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:24:54.920Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{05d792} at intensamente.wlk:73 exhausted all cases without a match [Parameter]{05d792} at intensamente.wlk:73 exhausted all cases without a match","stack":"Error: [Parameter]{05d792} at intensamente.wlk:73 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:24:55.247Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:24:55.509Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:07.470Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:07.644Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:25:08.057Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Super]{b6352e} at intensamente.wlk:74 exhausted all cases without a match [Super]{b6352e} at intensamente.wlk:74 exhausted all cases without a match","stack":"Error: [Super]{b6352e} at intensamente.wlk:74 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:25:10.411Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:10.510Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:10.580Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:10.654Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:10.805Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:10.963Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:11.104Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":137,"timestamp":"2024-11-22T13:25:11.242Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":150,"timestamp":"2024-11-22T13:25:17.705Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:17.706Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:17.800Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:17.959Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:25:18.067Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:25:20.370Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:25:20.651Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:25:21.606Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:25:22.289Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:25:29.273Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{0a44e4} at intensamente.wlk:75 exhausted all cases without a match [If]{0a44e4} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [If]{0a44e4} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:25:30.131Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:30.221Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:30.288Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":148,"timestamp":"2024-11-22T13:25:30.437Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:30.503Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:30.585Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:30.740Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{c55764} at intensamente.wlk:75 exhausted all cases without a match [If]{c55764} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [If]{c55764} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:25:30.924Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{ce921f} at intensamente.wlk:75 exhausted all cases without a match [If]{ce921f} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [If]{ce921f} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:25:31.314Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:25:31.594Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":135,"timestamp":"2024-11-22T13:25:31.730Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:25:33.541Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b4b5ec} at intensamente.wlk:-- exhausted all cases without a match [Send]{b4b5ec} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{b4b5ec} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:25:33.561Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{ca8a94} at intensamente.wlk:76 exhausted all cases without a match [Assignment]{ca8a94} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [Assignment]{ca8a94} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:25:33.562Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{c9cf87} at intensamente.wlk:75 exhausted all cases without a match [If]{c9cf87} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [If]{c9cf87} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)","timestamp":"2024-11-22T13:25:33.562Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":136,"timestamp":"2024-11-22T13:25:33.702Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:33.702Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:33.771Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:33.838Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:33.997Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:34.242Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:34.304Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:34.660Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:35.230Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T13:25:35.447Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:35.448Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{2c721e} at intensamente.wlk:75 exhausted all cases without a match [If]{2c721e} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [If]{2c721e} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:25:53.718Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:53.822Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:25:53.942Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":136,"timestamp":"2024-11-22T13:25:54.668Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:26:18.236Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:26:18.863Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:26:20.701Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:26:21.000Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.pintensidad [Field]{6548cf} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.pintensidad [Field]{6548cf} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.pintensidad [Field]{6548cf} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:26:22.656Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:26:22.762Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:22.763Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:22.848Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:23.014Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:26:23.130Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":138,"timestamp":"2024-11-22T13:26:23.912Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:26:33.695Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:26:35.242Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:26:45.146Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T13:26:46.783Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:26:47.496Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:49.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:50.013Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:50.080Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:26:50.184Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:26:50.289Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:50.368Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:50.434Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:26:50.703Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:26:57.084Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadc [Field]{1c6537} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidadc [Field]{1c6537} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadc [Field]{1c6537} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:27:18.770Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:27:19.921Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidad0 [Field]{017800} at intensamente.wlk:22 exhausted all cases without a match intensamente.Emocion.intensidad0 [Field]{017800} at intensamente.wlk:22 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidad0 [Field]{017800} at intensamente.wlk:22 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:27:19.938Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:27:20.480Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:27:20.586Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:27:21.763Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:27:21.872Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":151,"timestamp":"2024-11-22T13:27:22.266Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{7a43ed} at intensamente.wlk:76 exhausted all cases without a match [If]{7a43ed} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [If]{7a43ed} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:27:54.459Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:27:54.562Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:54.582Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:54.668Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:27:54.783Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:54.877Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:54.969Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:27:55.072Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:55.151Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:27:56.239Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T13:27:56.846Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{1d2cad} at intensamente.wlk:78 exhausted all cases without a match [Assignment]{1d2cad} at intensamente.wlk:78 exhausted all cases without a match","stack":"Error: [Assignment]{1d2cad} at intensamente.wlk:78 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:27:58.644Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{640a70} at intensamente.wlk:76 exhausted all cases without a match [If]{640a70} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [If]{640a70} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:27:58.644Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:58.738Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:58.808Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:27:59.008Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:59.009Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:59.098Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:27:59.202Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:59.267Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:27:59.369Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:59.448Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:59.912Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:27:59.987Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:00.146Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:00.400Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T13:28:00.543Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:00.543Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:01.400Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{250669} at intensamente.wlk:78 exhausted all cases without a match [Assignment]{250669} at intensamente.wlk:78 exhausted all cases without a match","stack":"Error: [Assignment]{250669} at intensamente.wlk:78 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:28:01.759Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{007744} at intensamente.wlk:76 exhausted all cases without a match [If]{007744} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [If]{007744} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:28:01.759Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{e22d1f} at intensamente.wlk:78 exhausted all cases without a match [Assignment]{e22d1f} at intensamente.wlk:78 exhausted all cases without a match","stack":"Error: [Assignment]{e22d1f} at intensamente.wlk:78 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:28:02.755Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{9a899f} at intensamente.wlk:76 exhausted all cases without a match [If]{9a899f} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [If]{9a899f} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:28:02.755Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{78c3b6} at intensamente.wlk:78 exhausted all cases without a match [Assignment]{78c3b6} at intensamente.wlk:78 exhausted all cases without a match","stack":"Error: [Assignment]{78c3b6} at intensamente.wlk:78 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:28:02.937Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{df0dd8} at intensamente.wlk:76 exhausted all cases without a match [If]{df0dd8} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [If]{df0dd8} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:28:02.938Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:28:03.043Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{2442b4} at intensamente.wlk:78 exhausted all cases without a match [Assignment]{2442b4} at intensamente.wlk:78 exhausted all cases without a match","stack":"Error: [Assignment]{2442b4} at intensamente.wlk:78 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:28:03.141Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{e7afa5} at intensamente.wlk:76 exhausted all cases without a match [If]{e7afa5} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [If]{e7afa5} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:28:03.141Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 84 | class Evento{\n 85 | const property impacto}\n> 86 | }\n | ^\n 87 | \n 88 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 84 | class Evento{\n 85 | const property impacto}\n> 86 | }\n | ^\n 87 | \n 88 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:07.842Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:28:09.783Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:09.903Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 85 | const property impacto\n 86 | const\n> 87 | }\n | ^\n 88 | \n 89 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 85 | const property impacto\n 86 | const\n> 87 | }\n | ^\n 88 | \n 89 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:10.536Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 85 | const property impacto\n 86 | const \n> 87 | }\n | ^\n 88 | \n 89 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'property', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 85 | const property impacto\n 86 | const \n> 87 | }\n | ^\n 88 | \n 89 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'property', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:10.606Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:11.992Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.ev [Field]{920601} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.ev [Field]{920601} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.ev [Field]{920601} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:12.174Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.even [Field]{0e4d0c} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.even [Field]{0e4d0c} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.even [Field]{0e4d0c} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:12.421Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.evento [Field]{b596d5} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.evento [Field]{b596d5} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.evento [Field]{b596d5} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:12.763Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:28:13.110Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T13:28:14.467Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:14.469Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:28:14.575Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:14.665Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:14.737Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:14.819Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 87 | \n 88 | method\n> 89 | }\n | ^\n 90 | \n 91 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 87 | \n 88 | method\n> 89 | }\n | ^\n 90 | \n 91 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:14.918Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:14.918Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 87 | \n 88 | method \n> 89 | }\n | ^\n 90 | \n 91 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 87 | \n 88 | method \n> 89 | }\n | ^\n 90 | \n 91 | const evento = new Evento(impacto=10)\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:15.109Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:15.110Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method ()\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method ()\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:15.363Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (e)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (e)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:15.753Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (ev)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (ev)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:15.858Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (eve)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (eve)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:15.976Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (even)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (even)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:16.108Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (event)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (event)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:16.227Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (evento)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (evento)\n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:16.359Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const evento\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:16.845Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const d\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const d\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:18.863Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const de\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const de\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:18.885Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:18.899Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const des\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const des\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:19.250Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:19.262Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const desc\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const desc\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:19.487Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:19.501Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descr\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descr\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:19.597Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:19.610Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descri\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descri\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:19.714Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match","stack":"Error: intensamente.Evento.evento [Field]{149e43} at intensamente.wlk:86 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:28:19.725Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descrip\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descrip\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:19.903Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripc\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripc\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:20.045Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripci\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripci\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:20.167Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripcio\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripcio\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:20.308Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripcion\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 86 | const descripcion\n 87 | \n> 88 | method (evento) \n | ^\n 89 | }\n 90 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:28:20.511Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:22.452Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:28:24.212Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:28:25.744Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:28:26.018Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bca077} at intensamente.wlk:-- exhausted all cases without a match [Return]{bca077} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bca077} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:28:26.192Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:26.358Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:26.468Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:26.772Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:26.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bd5260} at intensamente.wlk:-- exhausted all cases without a match [Return]{bd5260} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bd5260} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:28:27.400Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:27.645Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:27.711Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:28:27.965Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:28:28.257Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:28:29.409Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:28:30.224Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":156,"timestamp":"2024-11-22T13:28:55.524Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":138,"timestamp":"2024-11-22T13:28:55.664Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":179,"timestamp":"2024-11-22T13:28:56.558Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T13:28:56.677Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T13:29:14.920Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:29:15.053Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:29:15.164Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:29:17.420Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:29:26.934Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:29:27.039Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:29:56.442Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":120,"timestamp":"2024-11-22T13:29:56.562Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:29:56.647Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:29:56.717Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:29:56.778Z"} +{"level":"info","message":"⌛ Validating example.wlk","timeElapsed":124,"timestamp":"2024-11-22T13:29:56.902Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"eb0b5130-421f-4c1a-936e-e81fb3196ea8","members":[{"id":"798460fd-1b5c-47ff-908d-2a02aa362401","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"ff8e4e99-8b6e-4748-9492-6ddda3e12c0d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"1ffa4f2e-3436-4f0b-bc54-89181633d1d8","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":4,"offset":54},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"7f67d66b-bb8d-4851-9aa2-0303a2809331","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":4,"offset":54},"start":{"column":21,"line":4,"offset":52}},"value":[{"id":"a073e557-c388-4640-9fb4-744a6fce2874","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d162680c-86dd-49f5-8f7c-0604138d1db6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c39805b7-6828-4b45-9459-fc8beff29816","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b25539d6-b618-4cd9-8f12-dc51206f5e78","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":104},"start":{"column":40,"line":7,"offset":102}},"value":12},{"id":"6ac67c71-87d1-40e3-ad9b-ac7ac046cf01","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":108},"start":{"column":44,"line":7,"offset":106}},"value":19}],"id":"54dea791-efda-414a-8632-76091d8ff6cb","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"e170602c-91ac-4161-b9df-c6451d2d1988","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":93},"start":{"column":27,"line":7,"offset":89}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":109},"start":{"column":27,"line":7,"offset":89}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":116},"start":{"column":27,"line":7,"offset":89}}},"id":"0c5ee433-6aaa-411f-9c33-86dd725899d1","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":116},"start":{"column":3,"line":7,"offset":65}}},{"body":{"id":"3799f919-cef2-432c-ba4e-a9097e907764","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"297f9f2d-dbb7-420c-aba8-a1e13fb6103c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2ca1dae9-eac7-4d8f-ba79-c89937efd0bd","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":174},"start":{"column":50,"line":10,"offset":167}}}],"id":"ced55d2f-dc89-4d80-bc31-768036bc8c2f","message":"add","metadata":[],"receiver":{"id":"0efff1cd-59bb-48d9-a429-efd3223c93c6","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":162},"start":{"column":36,"line":10,"offset":153}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":36,"line":10,"offset":153}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":36,"line":10,"offset":153}}},"id":"331dde60-d394-4b8e-99e7-f7ebc359c696","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"6cea27f9-8589-4463-8287-af4fb94a0d2f","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":149},"start":{"column":25,"line":10,"offset":142}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":3,"line":10,"offset":120}}},{"body":{"id":"107e3e9b-6962-4bec-8ff7-46221e29da73","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b6464604-624a-4eb8-b959-966da286c2fc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ada941ec-7ac7-4158-b334-68b6b31d150e","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":14,"offset":217}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":14,"offset":217}}},"id":"d2ce2619-7e4d-48d3-9f97-2a3163ef7f7c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"4929152a-7704-4ea1-8059-0a012595f754","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":209},"start":{"column":22,"line":13,"offset":203}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":13,"offset":184}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":57,"line":14,"offset":271},"start":{"column":13,"line":14,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":274},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:29:59.226Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"eb0b5130-421f-4c1a-936e-e81fb3196ea8","members":[{"id":"798460fd-1b5c-47ff-908d-2a02aa362401","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"ff8e4e99-8b6e-4748-9492-6ddda3e12c0d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"1ffa4f2e-3436-4f0b-bc54-89181633d1d8","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":4,"offset":54},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"7f67d66b-bb8d-4851-9aa2-0303a2809331","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":4,"offset":54},"start":{"column":21,"line":4,"offset":52}},"value":[{"id":"a073e557-c388-4640-9fb4-744a6fce2874","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d162680c-86dd-49f5-8f7c-0604138d1db6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c39805b7-6828-4b45-9459-fc8beff29816","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b25539d6-b618-4cd9-8f12-dc51206f5e78","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":104},"start":{"column":40,"line":7,"offset":102}},"value":12},{"id":"6ac67c71-87d1-40e3-ad9b-ac7ac046cf01","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":108},"start":{"column":44,"line":7,"offset":106}},"value":19}],"id":"54dea791-efda-414a-8632-76091d8ff6cb","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"e170602c-91ac-4161-b9df-c6451d2d1988","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":93},"start":{"column":27,"line":7,"offset":89}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":109},"start":{"column":27,"line":7,"offset":89}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":116},"start":{"column":27,"line":7,"offset":89}}},"id":"0c5ee433-6aaa-411f-9c33-86dd725899d1","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":116},"start":{"column":3,"line":7,"offset":65}}},{"body":{"id":"3799f919-cef2-432c-ba4e-a9097e907764","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"297f9f2d-dbb7-420c-aba8-a1e13fb6103c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2ca1dae9-eac7-4d8f-ba79-c89937efd0bd","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":174},"start":{"column":50,"line":10,"offset":167}}}],"id":"ced55d2f-dc89-4d80-bc31-768036bc8c2f","message":"add","metadata":[],"receiver":{"id":"0efff1cd-59bb-48d9-a429-efd3223c93c6","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":162},"start":{"column":36,"line":10,"offset":153}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":36,"line":10,"offset":153}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":36,"line":10,"offset":153}}},"id":"331dde60-d394-4b8e-99e7-f7ebc359c696","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"6cea27f9-8589-4463-8287-af4fb94a0d2f","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":149},"start":{"column":25,"line":10,"offset":142}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":3,"line":10,"offset":120}}},{"body":{"id":"107e3e9b-6962-4bec-8ff7-46221e29da73","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b6464604-624a-4eb8-b959-966da286c2fc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ada941ec-7ac7-4158-b334-68b6b31d150e","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":14,"offset":217}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":14,"offset":217}}},"id":"d2ce2619-7e4d-48d3-9f97-2a3163ef7f7c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"4929152a-7704-4ea1-8059-0a012595f754","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":209},"start":{"column":22,"line":13,"offset":203}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":13,"offset":184}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":57,"line":14,"offset":271},"start":{"column":13,"line":14,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":274},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:29:59.906Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"eb0b5130-421f-4c1a-936e-e81fb3196ea8","members":[{"id":"798460fd-1b5c-47ff-908d-2a02aa362401","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":28},"start":{"column":3,"line":2,"offset":18}},"value":{"id":"ff8e4e99-8b6e-4748-9492-6ddda3e12c0d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"1ffa4f2e-3436-4f0b-bc54-89181633d1d8","isConstant":true,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":4,"offset":54},"start":{"column":3,"line":4,"offset":34}},"value":{"id":"7f67d66b-bb8d-4851-9aa2-0303a2809331","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":4,"offset":54},"start":{"column":21,"line":4,"offset":52}},"value":[{"id":"a073e557-c388-4640-9fb4-744a6fce2874","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d162680c-86dd-49f5-8f7c-0604138d1db6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c39805b7-6828-4b45-9459-fc8beff29816","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b25539d6-b618-4cd9-8f12-dc51206f5e78","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":104},"start":{"column":40,"line":7,"offset":102}},"value":12},{"id":"6ac67c71-87d1-40e3-ad9b-ac7ac046cf01","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":108},"start":{"column":44,"line":7,"offset":106}},"value":19}],"id":"54dea791-efda-414a-8632-76091d8ff6cb","message":"between","metadata":[{"args":{"position":"end","text":"//2"},"name":"comment"}],"receiver":{"id":"e170602c-91ac-4161-b9df-c6451d2d1988","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":93},"start":{"column":27,"line":7,"offset":89}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":109},"start":{"column":27,"line":7,"offset":89}}}}],"sourceMap":{"end":{"column":4,"line":9,"offset":116},"start":{"column":27,"line":7,"offset":89}}},"id":"0c5ee433-6aaa-411f-9c33-86dd725899d1","isOverride":false,"metadata":[{"args":{"position":"start","text":"//1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":9,"offset":116},"start":{"column":3,"line":7,"offset":65}}},{"body":{"id":"3799f919-cef2-432c-ba4e-a9097e907764","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"297f9f2d-dbb7-420c-aba8-a1e13fb6103c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2ca1dae9-eac7-4d8f-ba79-c89937efd0bd","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":174},"start":{"column":50,"line":10,"offset":167}}}],"id":"ced55d2f-dc89-4d80-bc31-768036bc8c2f","message":"add","metadata":[],"receiver":{"id":"0efff1cd-59bb-48d9-a429-efd3223c93c6","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":162},"start":{"column":36,"line":10,"offset":153}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":36,"line":10,"offset":153}}}}],"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":36,"line":10,"offset":153}}},"id":"331dde60-d394-4b8e-99e7-f7ebc359c696","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"6cea27f9-8589-4463-8287-af4fb94a0d2f","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":149},"start":{"column":25,"line":10,"offset":142}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":175},"start":{"column":3,"line":10,"offset":120}}},{"body":{"id":"107e3e9b-6962-4bec-8ff7-46221e29da73","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b6464604-624a-4eb8-b959-966da286c2fc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ada941ec-7ac7-4158-b334-68b6b31d150e","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":14,"offset":217}}}}],"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":14,"offset":217}}},"id":"d2ce2619-7e4d-48d3-9f97-2a3163ef7f7c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[{"id":"4929152a-7704-4ea1-8059-0a012595f754","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":28,"line":13,"offset":209},"start":{"column":22,"line":13,"offset":203}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":14,"offset":226},"start":{"column":3,"line":13,"offset":184}}}],"metadata":[],"name":"Persona","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":57,"line":14,"offset":271},"start":{"column":13,"line":14,"offset":227}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":15,"offset":274},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:30:00.633Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:30:18.517Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:30:18.624Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:30:18.731Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:30:18.848Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:30:20.244Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:30:20.353Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T13:30:20.484Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"957e676b-42da-4639-be1b-e2c0b6db0380","imports":[],"members":[{"id":"8a076ef6-1123-4476-a2ef-59cdbc999487","members":[{"id":"bbec0744-1260-4321-ab47-f0001ffbd7f0","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"670baba4-7174-438e-8d39-fd783979b885","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"374c7c8c-26ae-4dc3-82d7-4149740829ec","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"72218608-10d2-43ac-89ed-7be083265a51","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"fc13a6cf-d18e-48ee-823f-40bea63de2ba","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"cfe064cc-250f-4e75-9b5c-97e3b837f09e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"556b5dc6-71ee-4974-abea-b95d691afd78","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9c86eabd-7acc-4f5c-ae76-831037302ca7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"98cc5100-0f15-4d78-b5e2-a6acb42b235b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"e1cd61e0-b4cc-436f-af1f-bf53abec4570","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"66037c70-9dc4-4786-8a83-a8bfcef76bb0","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"05989bc6-ca94-489d-b72d-82fba6ac9209","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"187d529d-56cd-4f1e-93ee-11215a6ff3a9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0aeb8eff-6a34-4e5b-9338-150a07f24cda","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"6cf49b3a-3217-4fec-8f33-5b68b1aa9fcf","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"70605f37-b1a8-4b87-8047-f79481e2456a","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"dba04639-ff73-4994-a2dd-8ec21b9d9a8f","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"74d5a3a2-1841-4707-9afa-953402770616","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"1c396974-d6d8-4f3c-b3df-f582b8744962","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"4c2fc86e-ae5a-46ca-8f2d-8201b6841d1c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"081346c8-7251-421f-97a0-5f48a2f1eeb1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"cce7ba42-4e41-410a-84b4-556027ec4f6d","members":[{"body":{"id":"99850155-440e-4520-b227-b2d5bae7895f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0b77a78-e26a-4856-8c0a-86d74c0da7b6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"286140e2-580a-4713-a8ad-8813c090a563","message":"puedeLiberarse","metadata":[],"receiver":{"id":"b8f29d92-ff39-4b14-a0eb-70b67c8202ae","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"257bf30d-c5eb-4b82-b199-53ef4eb8a054","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"88ee778a-7945-491e-9034-fa57835e815a","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"c6fe3332-d1f8-4789-9260-b809a6bdee9d","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"f96ef429-cd00-45e4-95f6-d1659777a4ff","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"5a8c4530-9efe-448c-985d-d680b7e917c7","metadata":[],"reference":{"id":"18e6b856-1e9f-4d2e-ba44-7e24756693fd","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"8352e412-ebd4-448c-baa8-5537b4e70a5a","message":"all","metadata":[],"receiver":{"id":"4f59b2c5-c5d3-45fc-8604-637e6866f635","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}},"id":"e634f3ba-cffd-46dd-8a79-e20880b10b8e","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"585e644d-ce08-4a3b-9272-0a9bcedde1cf","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"da276d35-9108-4b4b-91cd-0091d75c9bfc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":16,"offset":339},"start":{"column":5,"line":16,"offset":292}},"value":{"args":[{"id":"acba4184-611c-4984-bec4-4b4e97b1eb0a","members":[{"body":{"id":"acdbf522-9ccf-4cde-bfdd-d1b14cf58802","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1d48390b-c2f7-4dd8-b30c-382e348eae84","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"eec353a4-7c2f-4643-9e2d-c5dda87a1eb0","message":"liberar","metadata":[],"receiver":{"id":"6f3414bb-3433-495c-8a98-b8f02fa5264e","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":16,"offset":326},"start":{"column":38,"line":16,"offset":325}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":16,"offset":336},"start":{"column":38,"line":16,"offset":325}}}}]},"id":"11329bf4-4a8f-401a-82a6-b6e7909a89e6","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"17679142-76dc-4b40-9772-210cc469ea22","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":16,"offset":321},"start":{"column":33,"line":16,"offset":320}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"67a356c7-0e7f-4017-8566-dafd31b4149f","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"b3af822f-c96f-4645-98e1-bed48f3dc967","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":16,"offset":338},"start":{"column":31,"line":16,"offset":318}},"supertypes":[{"args":[],"id":"9371afbe-55df-4a16-a2cc-2ab66ef38987","metadata":[],"reference":{"id":"c26d3194-6646-4224-8e41-55c419c27928","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"97299bff-5090-4a89-84ba-530d56db933d","message":"map","metadata":[],"receiver":{"id":"405337ee-9aca-4802-90ae-6b058a18b2c8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":16,"offset":313},"start":{"column":17,"line":16,"offset":304}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":16,"offset":339},"start":{"column":17,"line":16,"offset":304}}},"variable":{"id":"c25cfac4-f5ed-4529-aba1-8c9d1c1fde90","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":16,"offset":301},"start":{"column":5,"line":16,"offset":292}}}}],"sourceMap":{"end":{"column":4,"line":17,"offset":344},"start":{"column":24,"line":15,"offset":285}}},"id":"102220f0-d872-4dbf-88bf-ff72a808ff8c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":17,"offset":344},"start":{"column":3,"line":15,"offset":264}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":347},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"f235f25f-d9d9-4f6f-9c45-1e0fc7611f46","members":[{"id":"83ef6d82-cdd4-4923-892b-383beadb057e","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":5,"line":22,"offset":374}},"value":{"id":"ff75d134-d603-4a4b-a9ee-ae78c92cb649","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":31,"line":22,"offset":400}},"value":100}},{"id":"5952f6b2-415f-49c5-8a1a-8d6c7f9dbd4a","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":5,"line":23,"offset":410}},"value":{"id":"50330243-dd35-4ab0-8859-28d1745e9ca0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":36,"line":23,"offset":441}},"value":0}},{"id":"e8c9e6ec-f2b0-43bc-96b7-6add2a954044","isConstant":true,"isProperty":false,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":24,"offset":476},"start":{"column":5,"line":24,"offset":448}},"value":{"id":"ef97811d-d3e4-4394-a442-aadc0975cd7a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":24,"offset":476},"start":{"column":32,"line":24,"offset":475}},"value":5}},{"body":{"id":"72483724-5bec-4e8b-a772-d906b6df2e95","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"de32a2b1-e962-4e6c-a2a1-565abebe3ca3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"6179e42e-4ef1-4222-b3cb-ae23c47b72ba","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":573},"start":{"column":29,"line":27,"offset":569}},"value":true}}],"sourceMap":{"end":{"column":33,"line":27,"offset":573},"start":{"column":29,"line":27,"offset":569}}},"id":"d203235d-24a0-41fb-97e4-7ae7c68b984c","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":573},"start":{"column":3,"line":27,"offset":543}}},{"body":{"id":"fc30f2f6-f46a-4410-a225-3b06caa374a3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f4bd0a6f-9159-42e6-b747-e5d2c1067093","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":629},"start":{"column":5,"line":30,"offset":609}},"value":{"args":[],"id":"d8f90ae4-3a0d-414b-a23a-03db8c05c6b3","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"a221e65f-f645-434a-b2b9-e9fa07517dd7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":629},"start":{"column":24,"line":30,"offset":628}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":629},"start":{"column":22,"line":30,"offset":626}}},"variable":{"id":"15dfa6a0-b153-4c17-8d8c-dbb411a250c8","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":30,"offset":624},"start":{"column":5,"line":30,"offset":609}}}}],"sourceMap":{"end":{"column":4,"line":31,"offset":634},"start":{"column":26,"line":29,"offset":602}}},"id":"ac7df752-2624-4c6c-9a4d-f2b4ee3c3bbc","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"b72da269-e0dc-4b0f-998a-e934d9176b6d","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":29,"offset":600},"start":{"column":18,"line":29,"offset":594}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":31,"offset":634},"start":{"column":3,"line":29,"offset":579}}},{"body":{"id":"a4b908cc-93d1-42d7-a8ad-5d9d564fd147","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8d79a4a0-e049-4cd6-9e46-05a188f66271","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ccb8566f-272a-4274-9b07-399d8e5feaa4","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":33,"offset":700},"start":{"column":45,"line":33,"offset":682}}}],"id":"4ffda722-307f-4905-a676-cac488b19e54","message":">","metadata":[],"receiver":{"id":"b1aa9ddf-7521-4032-b468-0fadca371821","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":33,"offset":681},"start":{"column":34,"line":33,"offset":671}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":33,"offset":700},"start":{"column":34,"line":33,"offset":671}}}}],"sourceMap":{"end":{"column":63,"line":33,"offset":700},"start":{"column":34,"line":33,"offset":671}}},"id":"a489167c-0085-45d7-8fba-4df2126b794c","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":33,"offset":700},"start":{"column":5,"line":33,"offset":642}}},{"body":{"id":"9e3b4d08-fc07-42c7-b59b-76428b47474b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8ff5f249-82b0-4c18-a014-b372cb6a9665","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"4583a5c5-635e-402a-95a1-5ad65eca3878","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"89f7691c-1c5b-4c4e-b544-38018633561a","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"ba1ab2b3-04be-45a7-8ec0-8b37134f91a7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a90c9343-e9ff-4a91-92cd-90dab4ff8581","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"d6dabc68-6d9e-43ce-b2cd-14897b82e998","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2c9ac67d-ea4a-4043-94f5-885378d628f5","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"6abb5ca1-04c0-4fd8-804e-746d641a4a00","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e07646fe-c13a-43e0-85d3-688b5b0a2214","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"35664e1e-9801-4e72-be3e-d4f8663ea061","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"0b0b3395-6691-4e02-b684-f655745c13e6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0dd1bcd1-4368-4bcf-935b-a5d6b7486af1","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"782c0e50-379a-4247-a804-88eee2abdfce","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"4b3f897b-513d-4528-9176-2f4a1abcde99","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"457782bd-f36a-4785-b258-93c7bd02b626","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"8584c0af-1e3f-4acf-b062-d28a768230f7","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"8a3a50cb-35ec-4528-b6f0-a74ca13b34e9","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"32b769c3-859d-4b0c-aa63-cc77791ab0c3","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"f0f3afab-6d5b-4612-9310-1cdf07f0afaf","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":35,"offset":705},"start":{"column":1,"line":20,"offset":351}},"supertypes":[]},{"id":"989c1f7d-91ba-4803-9ae4-5d4aeb935bad","members":[{"id":"c5729f6f-17be-4832-8d06-1118136bab09","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":763},"start":{"column":5,"line":38,"offset":744}},"value":{"id":"43e73248-9101-44d1-8b54-6a1e44de7417","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":763},"start":{"column":22,"line":38,"offset":761}},"value":[{"id":"69b4370f-d0e2-4928-b733-9c857e58c2d8","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"68715651-e1f8-4ec2-9830-c1b85738b06f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"f89885fa-2dff-4542-a973-390df16f3043","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"64078058-70e8-4337-864f-08b1a66603f4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":39,"offset":793},"start":{"column":26,"line":39,"offset":790}},"value":100}}],"sourceMap":{"end":{"column":29,"line":39,"offset":793},"start":{"column":26,"line":39,"offset":790}}},"id":"7f405942-11f3-4fd3-bedd-42d10a7cf6b1","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":39,"offset":793},"start":{"column":5,"line":39,"offset":769}}},{"body":{"id":"3f8fc7b0-a0c2-4f77-9e7c-cc04fb69e6c1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"fb605143-295e-4ab2-9292-f5e868b63af0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"469b3937-a669-45d5-9bb8-825e1214ee23","message":"intensidadElevada","metadata":[],"receiver":{"id":"178067d3-8a92-486c-91e9-6c52a459e150","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":41,"offset":867},"start":{"column":67,"line":41,"offset":863}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":41,"offset":887},"start":{"column":67,"line":41,"offset":863}}}],"id":"2170335f-7fee-48ed-951d-5df242856638","message":"and","metadata":[],"receiver":{"args":[],"id":"10742971-9e77-44a3-b078-cbb7fc1f1a2c","message":"tienePalabrota7","metadata":[],"receiver":{"id":"13a437a2-fa0a-4588-ae86-29e495abfab7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":41,"offset":840},"start":{"column":40,"line":41,"offset":836}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":41,"offset":858},"start":{"column":40,"line":41,"offset":836}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":41,"offset":887},"start":{"column":40,"line":41,"offset":836}}}}],"sourceMap":{"end":{"column":91,"line":41,"offset":887},"start":{"column":40,"line":41,"offset":836}}},"id":"baa6daef-dfd3-47ff-95c7-baadf286f1b4","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":41,"offset":887},"start":{"column":5,"line":41,"offset":801}}},{"body":{"id":"ef1f974d-2ccf-4dfe-a104-fda13cbe382e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"09c25d53-0567-4aa3-b693-9d317e163e0b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"5032bd7c-fd43-4fb3-9b64-77349da69b87","members":[{"body":{"id":"492cafce-11b4-48ca-9460-ab238d75c0de","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"34c6a976-5c21-4ea4-9909-e92c6ac7de49","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3c33a5bd-280b-4c45-beb9-db3edf090815","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":42,"offset":948},"start":{"column":59,"line":42,"offset":947}},"value":7}],"id":"e47a0300-c1a5-4db1-88ae-1b9746db726b","message":">","metadata":[],"receiver":{"args":[],"id":"309992a2-6a1e-4f40-b4ac-2da292f2377f","message":"size","metadata":[],"receiver":{"id":"bbb2d4ae-7046-4b87-90a3-cf07931ffad8","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":42,"offset":939},"start":{"column":50,"line":42,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":42,"offset":946},"start":{"column":50,"line":42,"offset":938}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":42,"offset":948},"start":{"column":50,"line":42,"offset":938}}}}]},"id":"def734d6-7188-4ae6-9572-dfef19e690be","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"c806f162-94fa-4b8c-8139-78a9c26f9f15","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":42,"offset":936},"start":{"column":47,"line":42,"offset":935}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"f6e3facb-4420-4d66-b49c-ecbf9345f96b","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"77c3e77c-c40b-42b2-9247-41c2dc1abfa3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":42,"offset":949},"start":{"column":46,"line":42,"offset":934}},"supertypes":[{"args":[],"id":"f23dc902-eff4-4dfb-8afd-c97a8f16d592","metadata":[],"reference":{"id":"6420e17f-70b8-4e61-a31a-d6d47a124043","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"0235b449-2486-43e1-b6d7-15fb834bb6e4","message":"any","metadata":[],"receiver":{"id":"60687930-8386-4863-a8fb-241dcffcd6c3","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":42,"offset":930},"start":{"column":32,"line":42,"offset":920}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":42,"offset":949},"start":{"column":32,"line":42,"offset":920}}}}],"sourceMap":{"end":{"column":61,"line":42,"offset":949},"start":{"column":32,"line":42,"offset":920}}},"id":"92e23ba1-bad2-44e1-930c-6a47b3fe2e83","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":42,"offset":949},"start":{"column":5,"line":42,"offset":893}}},{"body":{"id":"beb19f70-48b3-42ba-92e4-7cf1dfb34413","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"a71031b8-fa5e-4492-81c1-a72f3aefbadd","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":45,"offset":1008},"start":{"column":11,"line":45,"offset":1002}}}],"id":"cbc4dc12-2291-4f61-8f3f-3aa48eb78e1a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":45,"offset":1009},"start":{"column":5,"line":45,"offset":996}}},{"condition":{"args":[],"id":"9d9fa9e6-be03-4e7c-9299-a54f2131fa51","message":"puedeLiberarse","metadata":[],"receiver":{"id":"c88ad55e-deb0-49dd-b981-b75ce2eed14e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":46,"offset":1023},"start":{"column":8,"line":46,"offset":1019}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":46,"offset":1040},"start":{"column":8,"line":46,"offset":1019}}},"elseBody":{"id":"8bd98c1c-7035-4cce-ba8c-a7271367d165","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"f595b885-bc08-452a-8dea-86068d991b78","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":48,"offset":1089},"start":{"column":5,"line":46,"offset":1016}},"thenBody":{"id":"c7bcfdaf-a56f-43d9-ad93-00be8c909a93","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"73f78290-4471-4cb3-9840-b93c68a0bb97","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":47,"offset":1082},"start":{"column":9,"line":47,"offset":1052}},"value":{"args":[{"args":[],"id":"22305ea9-cfa5-4ecd-8ccc-f7197ed27fd6","message":"impacto","metadata":[],"receiver":{"id":"d9c8686a-b485-40ff-9465-7138f531ec44","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":47,"offset":1072},"start":{"column":23,"line":47,"offset":1066}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":47,"offset":1082},"start":{"column":23,"line":47,"offset":1066}}}],"id":"a5528e9c-d43e-40a6-82a2-1c090d544d50","message":"-","metadata":[],"receiver":{"id":"b2c076ad-0b73-4850-81c3-23274855695a","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":47,"offset":1062},"start":{"column":9,"line":47,"offset":1052}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"abc11894-ccdd-4ec3-8a7d-787a0fe35cf1","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":47,"offset":1062},"start":{"column":9,"line":47,"offset":1052}}}}],"sourceMap":{"end":{"column":6,"line":48,"offset":1089},"start":{"column":30,"line":46,"offset":1041}}}}],"sourceMap":{"end":{"column":4,"line":49,"offset":1095},"start":{"column":37,"line":44,"offset":989}}},"id":"d6853cf5-5c3c-48e8-9381-8c33eb7233e6","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"e2b36ee7-49c3-4a1f-98d4-2ef97229d1ec","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":44,"offset":987},"start":{"column":29,"line":44,"offset":981}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":49,"offset":1095},"start":{"column":5,"line":44,"offset":957}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":50,"offset":1098},"start":{"column":1,"line":37,"offset":709}},"supertypes":[{"args":[],"id":"75a8c40c-2745-4127-960e-f908cddfa2ff","metadata":[],"reference":{"id":"25f27218-88aa-413a-a6d8-057f6723be86","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":37,"offset":737},"start":{"column":22,"line":37,"offset":730}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":37,"offset":737},"start":{"column":22,"line":37,"offset":730}}}]},{"id":"a4d20549-ca53-41d0-a194-ba72599b5b42","members":[{"body":{"id":"fe72c6c7-61a2-47a6-a9dd-d476e0695a3b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4f825f25-3bae-4788-85e8-44842aa5c275","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":55,"offset":1209},"start":{"column":9,"line":55,"offset":1185}},"value":{"args":[],"id":"f7839829-1f73-412a-86f0-3541618d7d03","message":"abs","metadata":[],"receiver":{"id":"00e54327-3bfe-44b6-9113-22277756a3c0","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":55,"offset":1203},"start":{"column":22,"line":55,"offset":1198}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":55,"offset":1209},"start":{"column":22,"line":55,"offset":1198}}},"variable":{"id":"e3589db5-4dc3-47e2-8c65-20d929936221","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":55,"offset":1195},"start":{"column":9,"line":55,"offset":1185}}}}],"sourceMap":{"end":{"column":6,"line":56,"offset":1216},"start":{"column":38,"line":54,"offset":1174}}},"id":"d5a8e957-d744-4122-9bdc-7ad59129c95d","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"2825c8e3-7f2d-4128-86d7-721df8e18975","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":54,"offset":1173},"start":{"column":32,"line":54,"offset":1168}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":56,"offset":1216},"start":{"column":5,"line":54,"offset":1141}}},{"body":{"id":"dc3bd831-6a25-4fa3-8fff-1999ea406212","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4699b203-32ee-4eff-9140-80097a389d8e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"66a9cf9a-66f7-4695-bf6c-97fd41019b43","message":"eventosPar","metadata":[],"receiver":{"id":"51443186-36a5-4c37-94c7-2bf6a993aaf5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":57,"offset":1289},"start":{"column":68,"line":57,"offset":1285}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":57,"offset":1302},"start":{"column":68,"line":57,"offset":1285}}}],"id":"f40afb30-e8c7-4a4c-a792-d9838572e0fc","message":"&&","metadata":[],"receiver":{"args":[],"id":"5030c04d-395f-4f3d-905d-926a1691bc49","message":"intensidadElevada","metadata":[],"receiver":{"id":"6350c232-58dd-46d4-b4ed-9c6a4aca1032","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":57,"offset":1261},"start":{"column":40,"line":57,"offset":1257}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":57,"offset":1281},"start":{"column":40,"line":57,"offset":1257}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":57,"offset":1302},"start":{"column":40,"line":57,"offset":1257}}}}],"sourceMap":{"end":{"column":85,"line":57,"offset":1302},"start":{"column":40,"line":57,"offset":1257}}},"id":"92ff4e37-6d8c-4c6b-82dd-48a6b9dcb29e","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":57,"offset":1302},"start":{"column":5,"line":57,"offset":1222}}},{"body":{"id":"3636d384-6233-43bc-84ed-2830ff865709","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"396cfee0-ae81-4ff1-b6a4-1ba993cb86c8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1ed54461-3dc4-402b-b96e-a978a6f1b076","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":59,"offset":1354},"start":{"column":48,"line":59,"offset":1353}},"value":0}],"id":"e6137bc0-5a53-48db-9c4c-e39071ae6858","message":"==","metadata":[],"receiver":{"args":[{"id":"cf135782-494a-4506-b90d-6d80c204d8d9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":59,"offset":1349},"start":{"column":43,"line":59,"offset":1348}},"value":2}],"id":"6d8341b5-907a-4444-ae77-b183624c1593","message":"%","metadata":[],"receiver":{"id":"bf171cc1-b872-4779-8518-c36bfe67ace2","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":59,"offset":1347},"start":{"column":27,"line":59,"offset":1332}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":59,"offset":1349},"start":{"column":27,"line":59,"offset":1332}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":59,"offset":1354},"start":{"column":27,"line":59,"offset":1332}}}}],"sourceMap":{"end":{"column":49,"line":59,"offset":1354},"start":{"column":27,"line":59,"offset":1332}}},"id":"97759d0d-11ca-4c4e-acee-42b695f8c9ab","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":59,"offset":1354},"start":{"column":5,"line":59,"offset":1310}}},{"body":{"id":"c1e6b5ee-3d92-4928-bdfc-0f95dc1d6c45","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"55dcee87-5638-46b5-85f1-2f225527bd70","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":62,"offset":1416},"start":{"column":15,"line":62,"offset":1410}}}],"id":"4b0f59f4-dff5-4851-8308-b363f75f7b09","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":62,"offset":1417},"start":{"column":9,"line":62,"offset":1404}}},{"condition":{"args":[],"id":"70f26d0f-31fb-44a1-a9dd-41f98cc5f5a7","message":"puedeLiberarse","metadata":[],"receiver":{"id":"219c17fc-6803-4451-addc-f44d434814a5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":63,"offset":1434},"start":{"column":12,"line":63,"offset":1430}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":63,"offset":1451},"start":{"column":12,"line":63,"offset":1430}}},"elseBody":{"id":"50f422c2-bc8e-4a6c-8d92-79412537423b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"195d5ea1-7fa3-4a28-804a-ec59f0438436","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":10,"line":65,"offset":1508},"start":{"column":9,"line":63,"offset":1427}},"thenBody":{"id":"afd363e7-1c5e-4d77-88f2-b1e1a804fae8","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d01fd0da-4925-44cb-bfb9-a33baf1ad910","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":64,"offset":1497},"start":{"column":13,"line":64,"offset":1467}},"value":{"args":[{"args":[],"id":"9508588f-8e1b-4cd5-9199-0b1b61bdd5e9","message":"impacto","metadata":[],"receiver":{"id":"9e480cf0-7b9e-4175-b945-49ec00cce115","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":64,"offset":1487},"start":{"column":27,"line":64,"offset":1481}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":64,"offset":1497},"start":{"column":27,"line":64,"offset":1481}}}],"id":"8dde4533-a49c-4161-95d2-58f2223f013c","message":"-","metadata":[],"receiver":{"id":"8d622680-9109-4e50-a9b7-edd5ee559578","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":64,"offset":1477},"start":{"column":13,"line":64,"offset":1467}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"662ca91b-a923-4b64-8a31-3a9551a501f8","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":64,"offset":1477},"start":{"column":13,"line":64,"offset":1467}}}}],"sourceMap":{"end":{"column":10,"line":65,"offset":1508},"start":{"column":34,"line":63,"offset":1452}}}}],"sourceMap":{"end":{"column":6,"line":66,"offset":1515},"start":{"column":36,"line":61,"offset":1393}}},"id":"6599b602-ee71-44d9-952f-9bf01436c521","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"d4c2b1c0-3cb3-41ba-b057-6be05b0b6438","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":61,"offset":1392},"start":{"column":29,"line":61,"offset":1386}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":66,"offset":1515},"start":{"column":5,"line":61,"offset":1362}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":67,"offset":1518},"start":{"column":1,"line":52,"offset":1102}},"supertypes":[{"args":[],"id":"9bf8d0af-bed6-4d34-8b69-e08515e31da8","metadata":[],"reference":{"id":"a0a6f387-1e3f-4809-8f19-fafab72faf6f","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":52,"offset":1132},"start":{"column":24,"line":52,"offset":1125}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":52,"offset":1132},"start":{"column":24,"line":52,"offset":1125}}}]},{"id":"a4f537fc-c277-4c6d-bfaf-b4f888fedc71","members":[{"id":"b9b1c4bf-3de7-4323-b6ab-7ad8f16158a6","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1595},"start":{"column":5,"line":71,"offset":1562}},"value":{"id":"a1614bd3-10da-4f88-9e6e-e87afff5106e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1595},"start":{"column":26,"line":71,"offset":1583}},"value":"melancolia"}},{"body":{"id":"113a0dd6-2e1a-4103-bfc6-3540c5e16298","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2dd01ded-1fc6-498d-bc67-b0b90821fe42","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"7f018242-6970-454e-a7ce-1b653bdcfacf","metadata":[],"name":"override","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":75,"offset":1678},"start":{"column":5,"line":75,"offset":1670}}}],"id":"113e30fe-f14d-48b2-ae09-e2be626aa428","message":"&&","metadata":[],"receiver":{"args":[{"id":"4182416f-6879-4124-afc8-e968ba6ad28d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":73,"offset":1659},"start":{"column":49,"line":73,"offset":1647}},"value":"melancolia"}],"id":"3e4d3e4d-84b2-45e9-88d3-27f40f7e3423","message":"!=","metadata":[],"receiver":{"id":"5c51cc11-20da-4916-92d6-393e9441ff64","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":73,"offset":1643},"start":{"column":40,"line":73,"offset":1638}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":73,"offset":1659},"start":{"column":40,"line":73,"offset":1638}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":75,"offset":1678},"start":{"column":40,"line":73,"offset":1638}}}}],"sourceMap":{"end":{"column":13,"line":75,"offset":1678},"start":{"column":40,"line":73,"offset":1638}}},"id":"9e48e27b-2ab5-4233-829b-9a3fc21250de","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":75,"offset":1678},"start":{"column":5,"line":73,"offset":1603}}},{"body":{"id":"c8c573d0-84ab-4cce-a2eb-33b2948845e4","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"e3f03ad0-1ecc-4458-a946-20909356f9c2","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":76,"offset":1724},"start":{"column":15,"line":76,"offset":1718}}}],"id":"5d223acf-a7ce-4ac6-96a2-efa90e5898d7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":76,"offset":1725},"start":{"column":9,"line":76,"offset":1712}}},{"condition":{"args":[],"id":"d8482f55-ef59-4b99-961b-ffa77a3df74a","message":"puedeLiberarse","metadata":[],"receiver":{"id":"2d6f85ad-44c8-4ea1-90c4-79223c49dbaf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":77,"offset":1742},"start":{"column":12,"line":77,"offset":1738}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":77,"offset":1759},"start":{"column":12,"line":77,"offset":1738}}},"elseBody":{"id":"6f65124e-b878-4956-8074-cf756c948506","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"5e1fd20a-88b7-4286-9d10-82cde9c0f029","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":10,"line":80,"offset":1858},"start":{"column":9,"line":77,"offset":1735}},"thenBody":{"id":"856a99f7-5b6f-474d-872d-36a82afb6ca0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c9ff1f06-1255-4163-b739-b8d44ce15d7d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":78,"offset":1805},"start":{"column":13,"line":78,"offset":1775}},"value":{"args":[{"args":[],"id":"e66f222f-a771-4119-8974-97ea91564bfd","message":"impacto","metadata":[],"receiver":{"id":"80cef32d-0fdf-4328-b704-551b89dcad84","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":78,"offset":1795},"start":{"column":27,"line":78,"offset":1789}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":78,"offset":1805},"start":{"column":27,"line":78,"offset":1789}}}],"id":"984ed490-91bc-46e5-b24f-037df44b03f6","message":"-","metadata":[],"receiver":{"id":"a63f5fb4-cb48-4019-ab9c-48ae72d37e75","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":78,"offset":1785},"start":{"column":13,"line":78,"offset":1775}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"a344edfb-5dec-4e0b-ba01-96bd1f88b576","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":78,"offset":1785},"start":{"column":13,"line":78,"offset":1775}}}},{"id":"d4f42851-ee56-4364-a60b-b6fb17abd737","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":79,"offset":1847},"start":{"column":13,"line":79,"offset":1819}},"value":{"args":[],"id":"e0fb11b4-b3c8-46a5-a9d5-521b567ab4c6","message":"descripcion","metadata":[],"receiver":{"id":"f2ef3c7a-00d6-480c-95d3-7301145d3d02","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":79,"offset":1833},"start":{"column":21,"line":79,"offset":1827}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":79,"offset":1847},"start":{"column":21,"line":79,"offset":1827}}},"variable":{"id":"ad5464be-868d-47b1-ba7b-7f278e130a7f","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":18,"line":79,"offset":1824},"start":{"column":13,"line":79,"offset":1819}}}}],"sourceMap":{"end":{"column":10,"line":80,"offset":1858},"start":{"column":34,"line":77,"offset":1760}}}}],"sourceMap":{"end":{"column":6,"line":81,"offset":1865},"start":{"column":36,"line":75,"offset":1701}}},"id":"6e8477ba-700c-434a-916f-3107a2b01480","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"e8a189db-adf5-4ea1-93e2-f7b09795283c","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":75,"offset":1700},"start":{"column":29,"line":75,"offset":1694}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":81,"offset":1865},"start":{"column":14,"line":75,"offset":1679}}},{"body":{"id":"500317b0-7a7c-4e11-a3c2-114de5fe83ae","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"57df7a31-5941-495d-b860-0dd6f3051389","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"fb8a25a0-0004-46dd-a202-0eb1f908224e","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"5ee82420-de85-409e-9d2f-4b0b2aebaa04","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"2d0f8ae7-694d-487d-a5fb-187f267b0b4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2dc844e4-987e-431a-b222-cd3d937057ec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"22d42b80-5542-472c-a657-5bfa75a8d188","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"12c579b6-b792-4bc5-9d3b-afa1e8a2ea38","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"91b42bc5-b969-45fc-b079-a239aee0c0fb","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"1eaa1ec3-f706-4dbf-a6a8-f7d8b760454b","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":83,"offset":1870},"start":{"column":1,"line":70,"offset":1524}},"supertypes":[{"args":[],"id":"53eaa445-9ad5-4afe-b015-5fcecb3d0c98","metadata":[],"reference":{"id":"21ca533b-a483-4a8c-8c2d-5a6b6c407c07","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":70,"offset":1555},"start":{"column":25,"line":70,"offset":1548}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":70,"offset":1555},"start":{"column":25,"line":70,"offset":1548}}}]},{"id":"fa2b0315-d920-4988-bb75-b68020a7d5d1","members":[{"id":"fa2734fb-9db3-4761-87f8-036a957d33b6","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":86,"offset":1915},"start":{"column":5,"line":86,"offset":1893}},"value":{"id":"977f7ef7-f866-4b08-a81f-db53f2b5dcf7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"7b88b99d-923d-4963-8be2-0c5f467752c4","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":87,"offset":1938},"start":{"column":5,"line":87,"offset":1921}},"value":{"id":"ce345b3f-9450-44e2-8e2b-cd9fa8df1b29","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"d45e6858-5973-4b70-bca6-6080d3268e92","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e2fbfb3b-6767-422a-be41-c443769f39d4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"d60bac2d-ccbe-4316-9009-8efcaaa74878","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":89,"offset":1980},"start":{"column":28,"line":89,"offset":1969}}}}],"sourceMap":{"end":{"column":39,"line":89,"offset":1980},"start":{"column":28,"line":89,"offset":1969}}},"id":"341f4e21-5b04-41cd-b0e9-08e7534352a3","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":89,"offset":1980},"start":{"column":5,"line":89,"offset":1946}}},{"body":{"id":"631fa2a9-daeb-42f6-8119-3ae137d68784","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b46932e5-e2b1-429d-8cad-2aa2cd533815","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"5f3f43fc-d55f-42e6-8fd3-77822f021f45","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"50235472-8306-4f61-b674-fdaaa60051d0","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":90,"offset":1984},"start":{"column":1,"line":85,"offset":1874}},"supertypes":[]},{"id":"433b191a-ba4b-4869-84b2-49cd5d444b25","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":92,"offset":2006},"start":{"column":1,"line":92,"offset":1988}},"value":{"id":"3313e6a6-6fab-49b3-a149-18003bcfdf2c","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":92,"offset":2006},"start":{"column":16,"line":92,"offset":2003}}}},{"id":"42ab4de3-3964-4ec6-b0d0-76281932c517","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":93,"offset":2089},"start":{"column":1,"line":93,"offset":2035}},"value":{"args":[{"id":"22555e59-4ef6-4950-bbe4-bd43760e3ec4","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":93,"offset":2088},"start":{"column":28,"line":93,"offset":2062}},"value":{"id":"9b89116c-adfb-4daa-b534-141de97d4a65","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":93,"offset":2088},"start":{"column":39,"line":93,"offset":2073}},"value":[{"id":"0784f5a0-6a91-427d-8b7b-1b004b52f086","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e3382d58-6fb5-4e29-989a-b6beceda38a5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":93,"offset":2087},"start":{"column":40,"line":93,"offset":2074}},"value":"aaaaaaaaaaa"}]]}}],"id":"3e06cbb6-7ee0-4bc3-94b9-74379d56a7e4","instantiated":{"id":"d613c691-1e4f-4cb2-832a-8337eb299e2a","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":93,"offset":2061},"start":{"column":22,"line":93,"offset":2056}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":93,"offset":2089},"start":{"column":18,"line":93,"offset":2052}}}},{"id":"76798d63-99f6-475d-9da7-5b2d2b59a9fa","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":94,"offset":2147},"start":{"column":1,"line":94,"offset":2091}},"value":{"args":[{"id":"357902d7-22b7-4cd2-8f35-7c3a3d111acd","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":94,"offset":2124},"start":{"column":28,"line":94,"offset":2118}},"value":{"id":"b7cf4748-d174-42fc-a24d-f585a2b048ca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":94,"offset":2124},"start":{"column":33,"line":94,"offset":2123}},"value":2}},{"id":"9e6b541a-3c83-4ef4-a0af-176c49073414","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":94,"offset":2146},"start":{"column":36,"line":94,"offset":2126}},"value":{"id":"81d18dc2-c581-410f-ad20-621e8494f55e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":94,"offset":2146},"start":{"column":46,"line":94,"offset":2136}},"value":[{"id":"9ed3df43-53cc-4ff6-8dfe-7b15e2663b2f","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"889022dc-e80e-49c2-9f2a-9770164dc531","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":94,"offset":2145},"start":{"column":47,"line":94,"offset":2137}}}]]}}],"id":"2cddc598-d80a-4458-b7c9-a0943b92f27f","instantiated":{"id":"501c772e-7a3a-4030-b4e8-dcb0b3d5045c","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":94,"offset":2116},"start":{"column":19,"line":94,"offset":2109}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":94,"offset":2147},"start":{"column":15,"line":94,"offset":2105}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":46,"line":92,"offset":2033},"start":{"column":20,"line":92,"offset":2007}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:30:22.551Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:30:24.096Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:30:24.961Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T13:30:25.241Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:30:52.242Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:30:52.664Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:00.668Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:05.298Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:05.611Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:06.159Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:07.118Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:08.611Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:20.462Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:24.501Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:24.867Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:25.169Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:25.562Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:25.934Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:26.230Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:31:26.549Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:31:27.315Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":125,"timestamp":"2024-11-22T13:31:27.443Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:31:28.528Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:31:28.903Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:32:03.913Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:32:17.245Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:32:17.350Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:32:17.729Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:32:24.481Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{04549a} at intensamente.wlk:73 exhausted all cases without a match [Send]{04549a} at intensamente.wlk:73 exhausted all cases without a match","stack":"Error: [Send]{04549a} at intensamente.wlk:73 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:32:27.563Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{9e2e5a} at intensamente.wlk:-- exhausted all cases without a match [Return]{9e2e5a} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{9e2e5a} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:32:27.564Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:27.739Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:27.808Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:32:27.921Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:28.091Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:32:28.339Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T13:32:28.683Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:28.802Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:32.575Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:32.838Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:37.502Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:32:43.277Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:32:43.721Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:44.839Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:44.903Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:45.059Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:45.124Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:45.378Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 74 | \n 75 | override method\n> 76 | }\n | ^\n 77 | \n 78 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 74 | \n 75 | override method\n> 76 | }\n | ^\n 77 | \n 78 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:32:45.418Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:45.418Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 74 | \n 75 | override method \n> 76 | }\n | ^\n 77 | \n 78 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 74 | \n 75 | override method \n> 76 | }\n | ^\n 77 | \n 78 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:32:45.522Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:45.522Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:32:47.152Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T13:32:49.083Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:49.226Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:49.311Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:32:49.421Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Super]{6d662e} at intensamente.wlk:76 exhausted all cases without a match [Super]{6d662e} at intensamente.wlk:76 exhausted all cases without a match","stack":"Error: [Super]{6d662e} at intensamente.wlk:76 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:32:57.365Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:57.454Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:57.527Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:57.589Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:32:57.695Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":129,"timestamp":"2024-11-22T13:32:57.825Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:57.889Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:57.951Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:32:58.013Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:32:59.701Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{bea205} at intensamente.wlk:75 exhausted all cases without a match [Parameter]{bea205} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Parameter]{bea205} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:32:59.720Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{2e431c} at intensamente.wlk:75 exhausted all cases without a match [Parameter]{2e431c} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Parameter]{2e431c} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:32:59.950Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":141,"timestamp":"2024-11-22T13:33:00.093Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{61a929} at intensamente.wlk:75 exhausted all cases without a match [Parameter]{61a929} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Parameter]{61a929} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:33:00.324Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:33:01.283Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | \n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 61 | \n 62 | }\n> 63 | }\n | ^\n 64 | \n 65 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:23.116Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 56 | \n 57 | }\n> 58 | }\n | ^\n 59 | \n 60 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 56 | \n 57 | }\n> 58 | }\n | ^\n 59 | \n 60 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:26.808Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 55 | \n 56 | }\n> 57 | }\n | ^\n 58 | \n 59 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 55 | \n 56 | }\n> 57 | }\n | ^\n 58 | \n 59 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:27.956Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | \n 55 | }\n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 54 | \n 55 | }\n> 56 | }\n | ^\n 57 | \n 58 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:29.764Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:39.375Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:43.992Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:44.456Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:47.329Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:49.443Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:55.439Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 37 | method intensidadElevada() = intensidad>criterioIntensidad\n 38 | \n> 39 | }\n | ^\n 40 | \n 41 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:55.828Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 38 | method intensidadElevada() = intensidad>criterioIntensidad\n 39 | \n> 40 | }\n | ^\n 41 | \n 42 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:56.237Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 39 | method intensidadElevada() = intensidad>criterioIntensidad\n 40 | \n> 41 | }\n | ^\n 42 | \n 43 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:56.686Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:33:58.572Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:33:58.796Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:59.601Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:33:59.909Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:00.136Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:00.262Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:00.370Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:00.550Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:00.609Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:01.010Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:01.010Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:01.239Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:01.240Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:01.303Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:01.381Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:01.506Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:02.179Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 34 | method intensidadElevada() = intensidad>criterioIntensidad\n 35 | \n> 36 | }\n | ^\n 37 | \n 38 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:03.472Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:34:06.233Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{58a303} at intensamente.wlk:31 exhausted all cases without a match [If]{58a303} at intensamente.wlk:31 exhausted all cases without a match","stack":"Error: [If]{58a303} at intensamente.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T13:34:08.015Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:08.112Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:34:08.358Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:34:08.813Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T13:34:10.350Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:34:10.462Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:34:10.574Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:34:12.070Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{0049b4} at intensamente.wlk:31 exhausted all cases without a match [If]{0049b4} at intensamente.wlk:31 exhausted all cases without a match","stack":"Error: [If]{0049b4} at intensamente.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:34:13.041Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:13.131Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:13.211Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:34:13.316Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:13.378Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:14.833Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:17.059Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:17.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:42.199Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:42.273Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:43.444Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:34:43.546Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:43.872Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:43.937Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:46.673Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{2fb453} at intensamente.wlk:69 exhausted all cases without a match [Assignment]{2fb453} at intensamente.wlk:69 exhausted all cases without a match","stack":"Error: [Assignment]{2fb453} at intensamente.wlk:69 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:34:49.674Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:49.767Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:49.847Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:49.914Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:50.004Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:34:50.108Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:50.343Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:50.404Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:50.755Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:50.822Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:50.889Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T13:34:51.007Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:34:55.593Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:55.593Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:34:55.819Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T13:34:56.655Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:34:56.767Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class\n 74 | \n> 75 | class Evento{\n | ^\n 76 | const property impacto\n 77 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class\n 74 | \n> 75 | class Evento{\n | ^\n 76 | const property impacto\n 77 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:57.087Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class \n 74 | \n> 75 | class Evento{\n | ^\n 76 | const property impacto\n 77 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class \n 74 | \n> 75 | class Evento{\n | ^\n 76 | const property impacto\n 77 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:34:57.218Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagrado y temor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagrado y temor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:35:37.702Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"c7d1e45a-8ee6-42b6-88f6-9d23b00d4d86","imports":[],"members":[{"id":"111366e3-0264-4aa1-a1ad-a52d33851adf","members":[{"id":"1ff99aeb-6eb8-41e1-ab27-7a1b836f70d6","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"34017b3e-8781-4f72-acae-7476b2e846d3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"59fe8e28-beb4-4bd1-9084-a7ea69360bfb","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"1a6a6f59-7cd6-49ee-a1df-cdb777b83f34","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"3c2d796b-f48a-4fa1-998d-62665bb59067","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"887be36f-6ded-4cb1-ab22-b2c50ac21d82","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"aa270e61-7661-487d-b165-51afd44d8dab","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ba85e463-9e5d-43b8-8078-d32c331c43a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"c954f96e-116a-4a4c-bb93-becaea2d33e4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"e2d65830-c1ce-4696-9e79-0454de1b8be6","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"ddecdbeb-707e-4462-af2e-ed7913013864","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"8712686f-d51c-4fc6-9ed5-3ff1c1bfa6fc","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"4ada67bc-6eeb-4c34-844a-bfc8b414d81d","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"23e0ef3d-ddb0-430c-a785-cff9e35e47d8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"077fd4c2-9262-477e-8276-4e5004c95f67","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"66ca00a5-b4f9-4309-b700-435901aceda0","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"dad9b741-54b9-4b8a-9bd6-269534f0fbac","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"4d7f589f-e232-4bb0-804a-cca9f2f3b35c","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"e0d55612-65c7-4253-9bcf-b8f4579d8948","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"2833b9bc-e9a5-4efd-a6aa-90be3d6d6de5","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"be499106-2e4f-4da0-ad81-dd3bbecd84b4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9899b082-3cac-43b1-b2ee-2617a9018c62","members":[{"body":{"id":"7f50bfc2-e13e-44d2-b97c-fd5ac7be18a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"119223da-ad71-45cb-8c63-7933699c0cdc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"19e5e262-09c4-4d0c-aac4-40b28936a07e","message":"puedeLiberarse","metadata":[],"receiver":{"id":"03994077-18a6-4c00-819b-125ebf952246","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"dffe9ad4-1596-488b-a270-e4b83c5b377b","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"db32d08c-7731-4aff-b7b4-5dbe1c7f05aa","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"c0ceb515-ddb5-4476-b093-90eae564ca11","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"2cd18c90-b168-4ea1-a60d-8a28f8511ce8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"8a2cf3c9-3dfc-461d-9ae8-d4ba9296ec34","metadata":[],"reference":{"id":"cf01f3f5-1f6d-467a-87a2-abae6452c403","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"194ad058-8d27-4109-94c1-a9b4c5c8755f","message":"all","metadata":[],"receiver":{"id":"2c1a7c58-a9ef-4668-870b-37fbb62abe0d","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}},"id":"02cff61e-5ce0-48e0-be32-4352fb599fa6","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"59833329-2a0b-4ac9-b886-c61fb96d5027","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4a2e4afb-1403-4cf0-9074-12e36b524632","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":16,"offset":339},"start":{"column":5,"line":16,"offset":292}},"value":{"args":[{"id":"d00cfbe8-77a3-415f-83d5-7a2715a3cc30","members":[{"body":{"id":"db61bd57-948c-4c78-86bf-9ee1e3e122ab","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"58fd1b50-31e3-45f8-9b98-7f34cff274a4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"a9d98cb2-ab28-4df3-abeb-3020a4f09c7a","message":"liberar","metadata":[],"receiver":{"id":"f741d4dd-d1b0-4d7b-9821-4476f978a390","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":16,"offset":326},"start":{"column":38,"line":16,"offset":325}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":16,"offset":336},"start":{"column":38,"line":16,"offset":325}}}}]},"id":"9c233499-1e34-4181-b4f2-d47a77f53b20","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"eb8fe31a-69dc-4509-a363-125f74abffd1","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":16,"offset":321},"start":{"column":33,"line":16,"offset":320}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"40557db1-8245-4a60-b946-4de08c406b5e","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"f97e6088-e3de-44c0-b095-0f24cef4430a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":16,"offset":338},"start":{"column":31,"line":16,"offset":318}},"supertypes":[{"args":[],"id":"98a2ecf3-ceb8-43f8-a47f-652a18bbfcfb","metadata":[],"reference":{"id":"f4334165-9739-4c99-92c8-0981c8234821","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"890ef078-fe36-4980-96a4-ef640f3b4cad","message":"map","metadata":[],"receiver":{"id":"f957d585-4fe7-46fa-8127-451c2e25b191","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":16,"offset":313},"start":{"column":17,"line":16,"offset":304}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":16,"offset":339},"start":{"column":17,"line":16,"offset":304}}},"variable":{"id":"da37b517-88cf-491f-b0ab-edd59068a260","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":16,"offset":301},"start":{"column":5,"line":16,"offset":292}}}}],"sourceMap":{"end":{"column":4,"line":17,"offset":344},"start":{"column":24,"line":15,"offset":285}}},"id":"cd1e3d18-d2aa-41b1-8c20-055378926c85","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":17,"offset":344},"start":{"column":3,"line":15,"offset":264}}}],"metadata":[],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":18,"offset":347},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"324e9555-ca93-4adf-80ec-6a8177646d64","members":[{"id":"0ed0aef1-82fe-4c71-8b9a-45afd64e0d42","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":5,"line":22,"offset":374}},"value":{"id":"7f4e84f1-730b-4260-aa2c-72c989c350e4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":22,"offset":403},"start":{"column":31,"line":22,"offset":400}},"value":100}},{"id":"fda8da61-f1c5-4332-bad7-ce0404812193","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":5,"line":23,"offset":410}},"value":{"id":"365d4408-7af0-4ed9-b1be-6623ab084d5e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":442},"start":{"column":36,"line":23,"offset":441}},"value":0}},{"id":"ba68816b-c668-4e36-b5b2-f3df3198b9f5","isConstant":true,"isProperty":false,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":24,"offset":476},"start":{"column":5,"line":24,"offset":448}},"value":{"id":"ee5fa2dc-78e7-44b4-9dc8-08b2a24e86ee","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":24,"offset":476},"start":{"column":32,"line":24,"offset":475}},"value":5}},{"body":{"id":"3488972a-072d-4059-a5f1-2580b813d733","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7aede088-61b6-4981-ab66-1cda5b7f350e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2be1d92d-e6ea-4e47-9914-7e2096cfaae1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":573},"start":{"column":29,"line":27,"offset":569}},"value":true}}],"sourceMap":{"end":{"column":33,"line":27,"offset":573},"start":{"column":29,"line":27,"offset":569}}},"id":"f97add1f-4fe5-4112-b11a-6aac478e304e","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":27,"offset":573},"start":{"column":3,"line":27,"offset":543}}},{"body":{"id":"4e2d2022-7f5d-4f5a-aee7-85188f452cfc","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4fe3137e-b80b-46b4-bd6c-60e98ec57c81","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":629},"start":{"column":5,"line":30,"offset":609}},"value":{"args":[],"id":"e3f05443-65ef-4cec-8ead-c3a4536995d7","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"9374d0d7-4f26-4d10-9966-fb7499b6a89a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":629},"start":{"column":24,"line":30,"offset":628}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":30,"offset":629},"start":{"column":22,"line":30,"offset":626}}},"variable":{"id":"5777c0cf-3c73-40a3-8ae1-166dd37bb72c","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":30,"offset":624},"start":{"column":5,"line":30,"offset":609}}}},{"condition":{"args":[],"id":"b2499f8c-38ae-41b6-8916-f464d6ec1961","message":"puedeLiberarse","metadata":[],"receiver":{"id":"64f48132-e549-4b25-8ff9-cfcb2d1e3506","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":31,"offset":642},"start":{"column":8,"line":31,"offset":638}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":31,"offset":659},"start":{"column":8,"line":31,"offset":638}}},"elseBody":{"id":"1979d435-f843-4b9b-a0ab-409bdd865ec2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"9d14e7c5-7c1f-408a-a70b-913e8e829ce0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":33,"offset":708},"start":{"column":5,"line":31,"offset":635}},"thenBody":{"id":"32ea1df3-468e-4f6e-b8f9-ddc8fb5c930f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7ae3d773-9329-47f1-a145-fc9e6373fbc5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":32,"offset":701},"start":{"column":9,"line":32,"offset":671}},"value":{"args":[{"args":[],"id":"7596996a-a9f5-4652-95ba-c23ba0dd673b","message":"impacto","metadata":[],"receiver":{"id":"9a5f4296-e2e7-4ebc-9afd-76417a5f31ab","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":32,"offset":691},"start":{"column":23,"line":32,"offset":685}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":32,"offset":701},"start":{"column":23,"line":32,"offset":685}}}],"id":"d04ef17e-7fbc-4c1d-be94-39a557b66cae","message":"-","metadata":[],"receiver":{"id":"1e8fd8f9-1c6d-418e-832c-214258aae662","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":32,"offset":681},"start":{"column":9,"line":32,"offset":671}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"81f0098e-2e69-4f25-8018-7ce53594954d","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":32,"offset":681},"start":{"column":9,"line":32,"offset":671}}}}],"sourceMap":{"end":{"column":6,"line":33,"offset":708},"start":{"column":30,"line":31,"offset":660}}}}],"sourceMap":{"end":{"column":4,"line":34,"offset":713},"start":{"column":26,"line":29,"offset":602}}},"id":"f7e19de1-de45-48b7-a145-b94692346282","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"436b3c6a-1b6a-4c4b-803f-b508b4271a9c","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":29,"offset":600},"start":{"column":18,"line":29,"offset":594}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":34,"offset":713},"start":{"column":3,"line":29,"offset":579}}},{"body":{"id":"9249933e-e32a-48b3-8b0a-ee465dcafe25","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6bf8d8d1-bab8-4d81-a3ca-c54856e6f408","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"0f373fe9-ca89-4fc5-96ab-4aede3be13ca","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":36,"offset":779},"start":{"column":45,"line":36,"offset":761}}}],"id":"9e73e056-4b71-44f7-a973-599e924be4b4","message":">","metadata":[],"receiver":{"id":"aaa678dc-07d7-4227-98ee-8760f6793ce1","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":36,"offset":760},"start":{"column":34,"line":36,"offset":750}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":36,"offset":779},"start":{"column":34,"line":36,"offset":750}}}}],"sourceMap":{"end":{"column":63,"line":36,"offset":779},"start":{"column":34,"line":36,"offset":750}}},"id":"e5a2427d-182a-48b8-b7bc-9aee5836a609","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":36,"offset":779},"start":{"column":5,"line":36,"offset":721}}},{"body":{"id":"4d9372ba-71f1-4089-9a5e-bb88d82ef95c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c636b1fd-96a5-4255-8a9a-839a3921d6cd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"094ae55a-a304-46aa-9a3a-c872ffe54a3b","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"82bf9adf-019b-47ce-aef6-40f5742e8704","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"6e1fe8af-e118-4f21-a4ba-02e18e20e60c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"43c8ede4-ffeb-4655-b9e3-6357b5d99be6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"58b619ff-5e9f-4925-b6d5-d75726fce397","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"7365122b-85d2-45d5-9d36-1e41387a1c3a","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"42269243-92b5-40d1-a47f-7a0f28f0c853","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b7c220b4-7d70-4462-8e76-1a68a45885e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b596f1b5-dc5d-49a9-a30f-b770686baa1e","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"f83f0b6b-b1d6-43c3-8000-9181f006ca72","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2c67e914-c664-4725-a1fa-6b5beee04c1e","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"c2801b4c-9cfc-49ea-93e2-2986b2464011","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"abb53a16-6392-4c5f-9d8c-1f3ff6fa623a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c531dd33-35a5-44af-bd08-90565dbc552b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"71a03056-d63b-4c0b-93ef-677ac2114f86","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"fa4264b9-d5e6-405f-8b14-b97152a260e9","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"04ccb810-457d-4af1-9e7a-8b025982bcd3","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"f6197838-29eb-4ecd-93d5-5e1748728168","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":38,"offset":784},"start":{"column":1,"line":20,"offset":351}},"supertypes":[]},{"id":"5a0887d7-5ecd-43e7-834e-a5bc95e872ca","members":[{"id":"df69bee4-a07d-4d3e-a129-abdb8cc47adb","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":41,"offset":842},"start":{"column":5,"line":41,"offset":823}},"value":{"id":"034231b8-750a-43f7-a82b-29e06ce6d6c2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":41,"offset":842},"start":{"column":22,"line":41,"offset":840}},"value":[{"id":"6aa43be7-5cc8-4f93-837b-a82e13fa58bc","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"17353e07-320a-4146-8c49-4245b06ac0bd","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"afb1b453-4539-4fc4-bd5b-bc6a3ab4fa44","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1d339a5a-5427-48ab-93bc-42101ce982e5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":42,"offset":872},"start":{"column":26,"line":42,"offset":869}},"value":100}}],"sourceMap":{"end":{"column":29,"line":42,"offset":872},"start":{"column":26,"line":42,"offset":869}}},"id":"3a672b7f-fac6-43df-a668-4039ad89d1cf","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":42,"offset":872},"start":{"column":5,"line":42,"offset":848}}},{"body":{"id":"f9828758-0f93-4459-b56d-4749b0b720b9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5ceba0ef-1402-4347-956f-a9d59931d6c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"17723a97-f857-473f-9b13-7ef0601d0b77","message":"intensidadElevada","metadata":[],"receiver":{"id":"05830ac8-34fc-48e3-b811-ed32021eb005","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":44,"offset":946},"start":{"column":67,"line":44,"offset":942}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":44,"offset":966},"start":{"column":67,"line":44,"offset":942}}}],"id":"90e2dbe1-ab0b-4c13-ba3e-9c0c894aef9a","message":"and","metadata":[],"receiver":{"args":[],"id":"e46f1494-fbc8-4885-baf9-79ad9fefc48c","message":"tienePalabrota7","metadata":[],"receiver":{"id":"cd09c4f8-1a28-4503-92fb-09df7170947c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":44,"offset":919},"start":{"column":40,"line":44,"offset":915}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":44,"offset":937},"start":{"column":40,"line":44,"offset":915}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":44,"offset":966},"start":{"column":40,"line":44,"offset":915}}}}],"sourceMap":{"end":{"column":91,"line":44,"offset":966},"start":{"column":40,"line":44,"offset":915}}},"id":"1b113fb8-b6a5-4ccd-8f43-b61974babdfe","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":44,"offset":966},"start":{"column":5,"line":44,"offset":880}}},{"body":{"id":"050e1b4d-b9d7-485c-8dcf-e9778df2c5c9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6ccfd8fe-1210-4268-9638-6f2467292333","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9021ca9b-6d3b-46ef-829b-06e8df70abb9","members":[{"body":{"id":"dc482237-c6ce-4cc6-910b-0a7ede007f4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9fbfbc42-c08f-4bb0-9c15-315ed6ceee18","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"fdcbd1ae-3349-4ab8-accd-dd6af8f7d22f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":45,"offset":1027},"start":{"column":59,"line":45,"offset":1026}},"value":7}],"id":"0e486bb6-29c0-46f4-b550-8900ee26a1c0","message":">","metadata":[],"receiver":{"args":[],"id":"e4328090-8062-4d4d-ab00-d099961abb69","message":"size","metadata":[],"receiver":{"id":"7daec035-4891-42be-aef8-e54835a7b112","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":45,"offset":1018},"start":{"column":50,"line":45,"offset":1017}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":45,"offset":1025},"start":{"column":50,"line":45,"offset":1017}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":45,"offset":1027},"start":{"column":50,"line":45,"offset":1017}}}}]},"id":"e14d9f66-dfed-42ce-aaf4-6e09726601c2","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"3f77443f-d3c1-4edd-9b8c-7508f9ce8608","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":45,"offset":1015},"start":{"column":47,"line":45,"offset":1014}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"8c58a3aa-e1e0-463c-9391-f271c191425e","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"f283ce14-6256-4844-95b5-1754f13361f9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":45,"offset":1028},"start":{"column":46,"line":45,"offset":1013}},"supertypes":[{"args":[],"id":"579caa48-74ee-4709-802c-502a36d4a74b","metadata":[],"reference":{"id":"67d431de-0840-4c79-bc7d-a58041315696","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"fd87f64a-20b5-4b12-b660-64b8419d67c2","message":"any","metadata":[],"receiver":{"id":"090470ae-ca31-4087-b437-154796b0e0ee","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":45,"offset":1009},"start":{"column":32,"line":45,"offset":999}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":45,"offset":1028},"start":{"column":32,"line":45,"offset":999}}}}],"sourceMap":{"end":{"column":61,"line":45,"offset":1028},"start":{"column":32,"line":45,"offset":999}}},"id":"979426c6-f314-4954-a6f8-4b4a2440bc51","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":45,"offset":1028},"start":{"column":5,"line":45,"offset":972}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":47,"offset":1033},"start":{"column":1,"line":40,"offset":788}},"supertypes":[{"args":[],"id":"5ffe1682-f39c-4de2-887a-f28855e10922","metadata":[],"reference":{"id":"1ce0525c-ce97-463a-91dc-7e65490b54b1","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":816},"start":{"column":22,"line":40,"offset":809}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":816},"start":{"column":22,"line":40,"offset":809}}}]},{"id":"779614fa-a957-4994-b1af-89981ca8a783","members":[{"body":{"id":"698ea423-a2e4-4339-90d3-1a538177f03f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"280204ac-2b2d-40bd-9ebf-fd937051babe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":52,"offset":1144},"start":{"column":9,"line":52,"offset":1120}},"value":{"args":[],"id":"ef0ac279-f678-4307-b89a-ed2ab17d26e7","message":"abs","metadata":[],"receiver":{"id":"62c7c8d9-98d3-434c-91f4-d575b7300187","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":52,"offset":1138},"start":{"column":22,"line":52,"offset":1133}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":52,"offset":1144},"start":{"column":22,"line":52,"offset":1133}}},"variable":{"id":"740d4866-47d5-4819-986e-81757fc08b50","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":52,"offset":1130},"start":{"column":9,"line":52,"offset":1120}}}}],"sourceMap":{"end":{"column":6,"line":53,"offset":1151},"start":{"column":38,"line":51,"offset":1109}}},"id":"5161a02b-ccf3-4227-87d2-ae2e896ae72f","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"43ac05be-6a76-40ea-98db-f8b81d0794ec","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":51,"offset":1108},"start":{"column":32,"line":51,"offset":1103}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":53,"offset":1151},"start":{"column":5,"line":51,"offset":1076}}},{"body":{"id":"fb4a4fb0-e6ce-4c20-b76f-c06d45f29d5d","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"633a6072-3b91-4fe2-b32d-315818340f22","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"10fa5b60-4068-46ea-870c-f0489093d0e1","message":"eventosPar","metadata":[],"receiver":{"id":"e69e6d76-2dae-4c57-be42-d16478ac9167","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":54,"offset":1224},"start":{"column":68,"line":54,"offset":1220}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":54,"offset":1237},"start":{"column":68,"line":54,"offset":1220}}}],"id":"20ca7c39-3f61-4085-b40e-9a7b0c7523ae","message":"&&","metadata":[],"receiver":{"args":[],"id":"2a6f4f30-edda-4084-bdcf-0f9ce21bdf15","message":"intensidadElevada","metadata":[],"receiver":{"id":"8a408e34-e27d-4e4f-9678-06bad1c81e0c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":54,"offset":1196},"start":{"column":40,"line":54,"offset":1192}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":54,"offset":1216},"start":{"column":40,"line":54,"offset":1192}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":54,"offset":1237},"start":{"column":40,"line":54,"offset":1192}}}}],"sourceMap":{"end":{"column":85,"line":54,"offset":1237},"start":{"column":40,"line":54,"offset":1192}}},"id":"dc2bf373-4bf7-4129-8bad-3b2c8a80ced9","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":54,"offset":1237},"start":{"column":5,"line":54,"offset":1157}}},{"body":{"id":"c228fcd5-cb32-4724-8c60-2be339408a92","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"196b8f1e-5a16-4f2b-b036-e9c1687bab4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"7f197931-9a2d-4457-8add-56cb35a18a5f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":56,"offset":1289},"start":{"column":48,"line":56,"offset":1288}},"value":0}],"id":"b231e641-9b38-4613-a975-a9aa61244dc9","message":"==","metadata":[],"receiver":{"args":[{"id":"410df602-0d4a-4fd9-97e9-73c5fe54bbbc","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":56,"offset":1284},"start":{"column":43,"line":56,"offset":1283}},"value":2}],"id":"1aabd575-ef8d-4f81-9a39-c7766f15b222","message":"%","metadata":[],"receiver":{"id":"f138740a-0c3b-4ace-9918-cacb291fcf66","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":56,"offset":1282},"start":{"column":27,"line":56,"offset":1267}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":56,"offset":1284},"start":{"column":27,"line":56,"offset":1267}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":56,"offset":1289},"start":{"column":27,"line":56,"offset":1267}}}}],"sourceMap":{"end":{"column":49,"line":56,"offset":1289},"start":{"column":27,"line":56,"offset":1267}}},"id":"687e8579-8977-4812-903e-fa3f99f30c9b","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":56,"offset":1289},"start":{"column":5,"line":56,"offset":1245}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":58,"offset":1298},"start":{"column":1,"line":49,"offset":1037}},"supertypes":[{"args":[],"id":"90c84555-8e6f-4be4-9845-59d4d5cbecee","metadata":[],"reference":{"id":"e8a1c13a-9f82-472e-83ca-67ec6e21f537","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":49,"offset":1067},"start":{"column":24,"line":49,"offset":1060}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":49,"offset":1067},"start":{"column":24,"line":49,"offset":1060}}}]},{"id":"919c8671-2ff4-49e7-bb62-a4fa165953d1","members":[{"id":"d293360a-3f2f-4e1e-8089-07a41ac288b3","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":63,"offset":1377},"start":{"column":5,"line":63,"offset":1344}},"value":{"id":"9a33fc76-ecb4-4e59-a072-06c6b4e7355f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":63,"offset":1377},"start":{"column":26,"line":63,"offset":1365}},"value":"melancolia"}},{"body":{"id":"a9edee5f-93be-45d4-958b-4ea72005aac1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"433fb253-4943-4b8f-815e-498888d794c1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"3fc6eef3-ef62-4b2b-987d-d141642c0a20","message":"intensidadElevada","metadata":[],"receiver":{"id":"91f8abbf-9520-4a70-b200-05ba841df887","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":69,"line":65,"offset":1449},"start":{"column":65,"line":65,"offset":1445}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":65,"offset":1469},"start":{"column":65,"line":65,"offset":1445}}}],"id":"10c710bc-dcf2-4eb2-add7-8eda95499146","message":"&&","metadata":[],"receiver":{"args":[{"id":"753c9f12-713a-4f3e-a38b-1db74a0dd0e5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":65,"offset":1441},"start":{"column":49,"line":65,"offset":1429}},"value":"melancolia"}],"id":"69897c2c-7691-447c-b18d-aca07874f16d","message":"!=","metadata":[],"receiver":{"id":"e3d36b3d-e8eb-4e5b-b8b7-5cc6c8f08eb4","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":65,"offset":1425},"start":{"column":40,"line":65,"offset":1420}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":65,"offset":1441},"start":{"column":40,"line":65,"offset":1420}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":65,"offset":1469},"start":{"column":40,"line":65,"offset":1420}}}}],"sourceMap":{"end":{"column":89,"line":65,"offset":1469},"start":{"column":40,"line":65,"offset":1420}}},"id":"113a30ff-378e-41ff-a38b-624851fffb0e","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":65,"offset":1469},"start":{"column":5,"line":65,"offset":1385}}},{"body":{"id":"6cc56b87-9035-4411-9f22-aeccf2f76247","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"08982301-1ed6-4f73-833e-17f8e566c05e","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":68,"offset":1531},"start":{"column":15,"line":68,"offset":1525}}}],"id":"9281c8d6-65da-4ec1-8e16-48e884aa55ba","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":68,"offset":1532},"start":{"column":9,"line":68,"offset":1519}}},{"id":"539faf29-b55e-4ced-85f3-19e315400498","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":69,"offset":1570},"start":{"column":9,"line":69,"offset":1542}},"value":{"args":[],"id":"1a311a7d-bf65-44bc-9504-4571aab951da","message":"descripcion","metadata":[],"receiver":{"id":"0b204585-202c-46cc-8a50-4553deca7be3","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":69,"offset":1556},"start":{"column":17,"line":69,"offset":1550}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":69,"offset":1570},"start":{"column":17,"line":69,"offset":1550}}},"variable":{"id":"17d20348-0d59-456b-80e7-68dd2a6ab1d0","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":69,"offset":1547},"start":{"column":9,"line":69,"offset":1542}}}}],"sourceMap":{"end":{"column":6,"line":70,"offset":1577},"start":{"column":36,"line":67,"offset":1508}}},"id":"3c8b2f30-d1b6-4b82-b7b0-ee3ce0ed7e90","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"6ac779bf-53de-4be8-a795-5f7c280a128c","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":67,"offset":1507},"start":{"column":29,"line":67,"offset":1501}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":70,"offset":1577},"start":{"column":5,"line":67,"offset":1477}}},{"body":{"id":"8ecc8b54-ca30-44d1-870a-dc08fe579116","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bc9efaf9-15f3-4af9-a050-b94983d62b8f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"a806aa47-6e62-47d1-ae91-b06979a4c0ca","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"232e6a08-9bf1-4b55-a5e4-b308aacd4718","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"1362a4bf-4266-4fa6-b0a2-e5dbf4e6c0c1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8ceb874f-afb4-4713-9f5b-5870c6143ea1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"34c9a4c5-52c7-4df7-99c6-33da9fb8a5ec","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"1e8b5297-b844-4787-a1cd-66eafd86cfb3","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"ab0992c4-a804-4c4c-81f2-c9d5826b7bd7","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"81c21c09-5033-43b7-8dd9-f0edfe261373","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":71,"offset":1580},"start":{"column":1,"line":62,"offset":1306}},"supertypes":[{"args":[],"id":"bda6a76a-3d29-4174-b612-bfbb4ae921fb","metadata":[],"reference":{"id":"59449137-5a01-485e-9e4a-6ae5ff8a7ac1","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":62,"offset":1337},"start":{"column":25,"line":62,"offset":1330}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":62,"offset":1337},"start":{"column":25,"line":62,"offset":1330}}}]},{"id":"9223b651-9528-4c2c-a90b-169fd3c16da8","members":[{"id":"8f47341e-ae96-47ed-bc3d-1aef2024fbfd","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":76,"offset":1633},"start":{"column":5,"line":76,"offset":1611}},"value":{"id":"8f9cb766-e96c-48aa-8173-f48da9254b98","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"9a6416a7-0a78-4171-bb08-5a78944ad7de","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":77,"offset":1656},"start":{"column":5,"line":77,"offset":1639}},"value":{"id":"10c86ab6-fefe-4a97-98cc-4aada3d1c48a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"e6a23d87-0cab-46f8-9daa-a400238f528f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6a289601-8d89-4aaf-851d-a26ba275da17","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"44382874-724b-4e12-99c8-3e9b6cbc8329","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1698},"start":{"column":28,"line":79,"offset":1687}}}}],"sourceMap":{"end":{"column":39,"line":79,"offset":1698},"start":{"column":28,"line":79,"offset":1687}}},"id":"5fe3c47a-e305-476a-a7a4-8917e50319b0","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1698},"start":{"column":5,"line":79,"offset":1664}}},{"body":{"id":"0cc00dcd-2007-4fce-9f7e-c26e6b6a7092","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a18e3c2d-42fe-45cc-a545-1a74607f0295","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"4d9f5e54-1e64-469f-8d66-204f34d4fbcf","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"f5419628-05f2-402d-933d-f6f3c08cf74e","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":80,"offset":1702},"start":{"column":1,"line":75,"offset":1592}},"supertypes":[]},{"id":"1221922e-ff34-48d8-b40a-ca54c2f57a15","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":82,"offset":1765},"start":{"column":1,"line":82,"offset":1706}},"value":{"args":[{"id":"b76ccff3-5eef-4e97-9d35-c80b7426aa63","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":82,"offset":1742},"start":{"column":27,"line":82,"offset":1732}},"value":{"id":"771cc246-092d-4862-8e0f-cbdc5b3c8451","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":82,"offset":1742},"start":{"column":35,"line":82,"offset":1740}},"value":10}},{"id":"33a98a30-04dc-43e2-85f7-d6859cf65678","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":82,"offset":1764},"start":{"column":39,"line":82,"offset":1744}},"value":{"id":"c55696ab-495f-471e-b008-a8e37a95883e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":82,"offset":1764},"start":{"column":53,"line":82,"offset":1758}},"value":"FLOW"}}],"id":"b82a5444-87eb-4a8c-ac29-4e6058f77c12","instantiated":{"id":"8a6ab4c2-194e-4556-a422-79be0f347c06","metadata":[],"name":"Evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":82,"offset":1731},"start":{"column":20,"line":82,"offset":1725}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":82,"offset":1765},"start":{"column":16,"line":82,"offset":1721}}}},{"id":"75436bbc-d3d6-44d7-a0f9-34ae19ccd120","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":83,"offset":1821},"start":{"column":1,"line":83,"offset":1767}},"value":{"args":[{"id":"db6fa259-9b47-4ca3-bdab-873627c29942","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":83,"offset":1820},"start":{"column":28,"line":83,"offset":1794}},"value":{"id":"ba5374a6-76a8-43ea-a2a8-a7ec837c93a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":83,"offset":1820},"start":{"column":39,"line":83,"offset":1805}},"value":[{"id":"bef1ab72-06a5-4eba-8363-022ae94cd1e5","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"f303f6ef-e7ac-4fee-9fac-f29d1e3ea28a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":83,"offset":1819},"start":{"column":40,"line":83,"offset":1806}},"value":"aaaaaaaaaaa"}]]}}],"id":"3f507a6b-aec7-414f-a4e0-ebaede2a075b","instantiated":{"id":"3168384f-cb27-46be-baf4-c58755d1117a","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":83,"offset":1793},"start":{"column":22,"line":83,"offset":1788}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":83,"offset":1821},"start":{"column":18,"line":83,"offset":1784}}}},{"id":"a453aadc-c757-40a9-8c0c-a95251ddd8d0","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":84,"offset":1879},"start":{"column":1,"line":84,"offset":1823}},"value":{"args":[{"id":"895179de-aeb0-440b-a908-e086fcc1de7d","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":84,"offset":1856},"start":{"column":28,"line":84,"offset":1850}},"value":{"id":"b739c692-62e1-4c37-b31e-c3735234a81c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":84,"offset":1856},"start":{"column":33,"line":84,"offset":1855}},"value":2}},{"id":"670ff3a4-fd38-4338-b837-87d89c1d5526","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":84,"offset":1878},"start":{"column":36,"line":84,"offset":1858}},"value":{"id":"04ff5e93-cf7b-41de-9f2f-a5a052244a5a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":84,"offset":1878},"start":{"column":46,"line":84,"offset":1868}},"value":[{"id":"0726cdb9-1515-432f-9ba1-2536e6b6eac4","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e1ac468d-160e-4aa7-9dfb-251d2d52a693","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":84,"offset":1877},"start":{"column":47,"line":84,"offset":1869}}}]]}}],"id":"c9e2994d-51ee-4dba-bf2e-0ab4990de74b","instantiated":{"id":"c80924e5-6fe9-40a4-9d73-40351673a738","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":84,"offset":1848},"start":{"column":19,"line":84,"offset":1841}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":84,"offset":1879},"start":{"column":15,"line":84,"offset":1837}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":5,"line":73,"offset":1588},"start":{"column":1,"line":73,"offset":1584}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:35:38.418Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagrado ytemor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagrado ytemor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:35:39.527Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagrado temor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagrado temor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:35:39.707Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagradotemor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class Desagradotemor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:35:40.175Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor:\n | ^\n 74 | \n 75 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:35:40.741Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 74 | \n 75 | \n> 76 | class Evento{\n | ^\n 77 | const property impacto\n 78 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 74 | \n 75 | \n> 76 | class Evento{\n | ^\n 77 | const property impacto\n 78 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:35:41.764Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:35:42.169Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":247,"timestamp":"2024-11-22T13:36:08.334Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":158,"timestamp":"2024-11-22T13:36:08.528Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:08.529Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":168,"timestamp":"2024-11-22T13:36:08.722Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":187,"timestamp":"2024-11-22T13:36:08.916Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:36:09.046Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T13:36:09.217Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":184,"timestamp":"2024-11-22T13:36:09.402Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":199,"timestamp":"2024-11-22T13:36:09.602Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T13:36:09.725Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":178,"timestamp":"2024-11-22T13:36:09.932Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":198,"timestamp":"2024-11-22T13:36:10.132Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":151,"timestamp":"2024-11-22T13:36:10.285Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:36:10.742Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:36:10.849Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T13:36:11.262Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:36:12.726Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class DesagradoYtemor{\n 74 | override method\n> 75 | }\n | ^\n 76 | \n 77 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class DesagradoYtemor{\n 74 | override method\n> 75 | }\n | ^\n 76 | \n 77 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:13.133Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class DesagradoYtemor{\n 74 | override method \n> 75 | }\n | ^\n 76 | \n 77 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 73 | class DesagradoYtemor{\n 74 | override method \n> 75 | }\n | ^\n 76 | \n 77 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:13.242Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:13.242Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:36:14.338Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:36:14.467Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:36:20.783Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{91adea} at intensamente.wlk:-- exhausted all cases without a match [Return]{91adea} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{91adea} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:26.768Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:26.857Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":144,"timestamp":"2024-11-22T13:36:30.475Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{c45fc4} at intensamente.wlk:-- exhausted all cases without a match [Return]{c45fc4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{c45fc4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:30.497Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:30.670Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:30.741Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{c45776} at intensamente.wlk:-- exhausted all cases without a match [Return]{c45776} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{c45776} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:30.978Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:36:31.491Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{134c8c} at intensamente.wlk:-- exhausted all cases without a match [Return]{134c8c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{134c8c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:31.517Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{fbd738} at intensamente.wlk:-- exhausted all cases without a match [Return]{fbd738} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{fbd738} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:31.859Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":122,"timestamp":"2024-11-22T13:36:32.155Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{58c1cd} at intensamente.wlk:-- exhausted all cases without a match [Return]{58c1cd} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{58c1cd} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:32.255Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2a877f} at intensamente.wlk:-- exhausted all cases without a match [Return]{2a877f} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2a877f} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:32.528Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{47c404} at intensamente.wlk:-- exhausted all cases without a match [Return]{47c404} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{47c404} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:32.772Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{d852d4} at intensamente.wlk:-- exhausted all cases without a match [Return]{d852d4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{d852d4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:33.130Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ac7737} at intensamente.wlk:75 exhausted all cases without a match [Send]{ac7737} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Send]{ac7737} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:35.621Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{3e9b78} at intensamente.wlk:-- exhausted all cases without a match [Return]{3e9b78} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{3e9b78} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:36:35.621Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:35.703Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:36:35.857Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:35.858Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:35.943Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:36.103Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:36:36.311Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:36.312Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:36:36.419Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fdf460} at intensamente.wlk:75 exhausted all cases without a match [Send]{fdf460} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Send]{fdf460} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:36.516Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{305a24} at intensamente.wlk:-- exhausted all cases without a match [Return]{305a24} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{305a24} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:36:36.517Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{11e067} at intensamente.wlk:75 exhausted all cases without a match [Send]{11e067} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Send]{11e067} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:36.929Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{be5cf9} at intensamente.wlk:-- exhausted all cases without a match [Return]{be5cf9} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{be5cf9} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:36:36.929Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor i{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor i{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.018Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor in{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor in{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.193Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inh{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inh{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.370Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inhe{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inhe{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.503Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inher{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inher{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.515Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inheri{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inheri{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.717Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inherit{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inherit{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:40.825Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inherits{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inherits{\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:41.065Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inherits {\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 71 | }\n 72 | \n> 73 | class DesagradoYtemor inherits {\n | ^\n 74 | \n 75 | override method puedeLiberarse() = cantidadEventos > intensidad\n\nExpected one of the following: \n\n'@', comment, identifier, package identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:36:41.179Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [ParameterizedType]{fbd673} at intensamente.wlk:73 exhausted all cases without a match [ParameterizedType]{fbd673} at intensamente.wlk:73 exhausted all cases without a match","stack":"Error: [ParameterizedType]{fbd673} at intensamente.wlk:73 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:42.698Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:42.784Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:36:42.985Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T13:36:43.363Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:36:55.027Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e1c864} at intensamente.wlk:75 exhausted all cases without a match [Send]{e1c864} at intensamente.wlk:75 exhausted all cases without a match","stack":"Error: [Send]{e1c864} at intensamente.wlk:75 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:36:55.733Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{9ecf95} at intensamente.wlk:-- exhausted all cases without a match [Return]{9ecf95} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{9ecf95} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:36:55.733Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:55.825Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:56.198Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:36:56.302Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:36:56.302Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:00.275Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:01.381Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:01.572Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:04.715Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:04.824Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:04.978Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T13:37:05.377Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:37:09.401Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:37:26.016Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T13:37:26.159Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:27.436Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:27.540Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:27.540Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:27.551Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":129,"timestamp":"2024-11-22T13:37:27.763Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:27.778Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.011Z"} diff --git a/log/wollok5.log b/log/wollok5.log new file mode 100644 index 0000000..0cc9836 --- /dev/null +++ b/log/wollok5.log @@ -0,0 +1,967 @@ +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.185Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.282Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.462Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.569Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.695Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:28.826Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:29.884Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial i\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial i\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.108Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:30.124Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial in\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial in\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.271Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inh\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inh\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.476Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inhe\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inhe\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.544Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.640Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.850Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheris\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheris\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:30.939Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherist\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherist\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:31.082Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherist \n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherist \n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:31.313Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherist\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherist\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:31.774Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheris\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheris\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:31.905Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:32.060Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:32.376Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:32.948Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherit\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherit\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:33.123Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:33.680Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:33.808Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inhe\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inhe\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:33.933Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inher\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:34.414Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inheri\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:34.490Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherit\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 77 | }\n 78 | \n> 79 | class Especial inherit\n | ^\n 80 | \n 81 | \n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:34.667Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:34.842Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:35.136Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:36.144Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:36.261Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:36.477Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:36.597Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:36.719Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:36.997Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:37.069Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:37:38.113Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:37:39.527Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":140,"timestamp":"2024-11-22T13:37:40.522Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:37:40.720Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:37:41.321Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:41.321Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:41.406Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 79 | class Especial inherits Emocion{\n 80 | override method\n> 81 | }\n | ^\n 82 | \n 83 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 79 | class Especial inherits Emocion{\n 80 | override method\n> 81 | }\n | ^\n 82 | \n 83 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:41.585Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:41.585Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 79 | class Especial inherits Emocion{\n 80 | override method \n> 81 | }\n | ^\n 82 | \n 83 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 79 | class Especial inherits Emocion{\n 80 | override method \n> 81 | }\n | ^\n 82 | \n 83 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:41.597Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:41.597Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 79 | class Especial inherits Emocion{\n 80 | override method\n> 81 | }\n | ^\n 82 | \n 83 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 79 | class Especial inherits Emocion{\n 80 | override method\n> 81 | }\n | ^\n 82 | \n 83 | \n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:37:42.876Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:37:42.878Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:37:43.446Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:37:43.660Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:37:48.119Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:37:50.569Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":152,"timestamp":"2024-11-22T13:37:51.041Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:37:52.389Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:37:52.620Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":171,"timestamp":"2024-11-22T13:37:57.797Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":195,"timestamp":"2024-11-22T13:37:58.287Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":143,"timestamp":"2024-11-22T13:37:58.603Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:37:58.802Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:37:58.982Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:38:00.124Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T13:38:00.253Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T13:38:00.865Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:38:01.875Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:38:03.276Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":141,"timestamp":"2024-11-22T13:38:04.075Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:38:04.177Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:39:50.909Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:39:55.867Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:39:56.287Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:39:56.396Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:40:00.719Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:40:43.767Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:40:52.403Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T13:40:53.643Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:40:53.853Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:40:53.956Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:41:02.585Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:41:05.679Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:41:05.850Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:41:18.690Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:41:18.943Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T13:41:19.692Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:41:19.797Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:41:27.663Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:42:02.047Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:42:08.450Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:42:08.559Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T13:42:11.367Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":157,"timestamp":"2024-11-22T13:42:28.139Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":135,"timestamp":"2024-11-22T13:42:28.311Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":226,"timestamp":"2024-11-22T13:42:28.539Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:28.539Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:42:28.665Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:28.665Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":144,"timestamp":"2024-11-22T13:42:28.809Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:28.909Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T13:42:29.035Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:29.037Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":194,"timestamp":"2024-11-22T13:42:29.232Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:42:29.355Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:29.355Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":154,"timestamp":"2024-11-22T13:42:29.516Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":173,"timestamp":"2024-11-22T13:42:29.690Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":173,"timestamp":"2024-11-22T13:42:29.961Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":162,"timestamp":"2024-11-22T13:42:30.124Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:42:35.426Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:39.477Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:42:40.188Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.p [Field]{9f5210} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.p [Field]{9f5210} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.p [Field]{9f5210} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:45.652Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:45.828Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:42:46.000Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.pers [Field]{649271} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.pers [Field]{649271} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.pers [Field]{649271} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:46.089Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.person [Field]{1000b4} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.person [Field]{1000b4} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.person [Field]{1000b4} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:46.420Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:42:46.846Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":146,"timestamp":"2024-11-22T13:42:47.587Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.i [Field]{36d61d} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.i [Field]{36d61d} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.i [Field]{36d61d} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:49.060Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.inter [Field]{dd2a75} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.inter [Field]{dd2a75} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.inter [Field]{dd2a75} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:49.664Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.inte [Field]{8d7344} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.inte [Field]{8d7344} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.inte [Field]{8d7344} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:50.024Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integra [Field]{14fea9} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integra [Field]{14fea9} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integra [Field]{14fea9} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:50.328Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:42:50.447Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrante [Field]{7a048e} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrante [Field]{7a048e} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrante [Field]{7a048e} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:42:50.877Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:42:59.853Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:43:03.117Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:43:04.464Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:43:07.313Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:08.368Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:10.577Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:43:10.681Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:10.744Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:43:10.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:10.916Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:43:13.483Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:43:14.990Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:22.580Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:43:25.089Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:25.089Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:43:25.203Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:25.278Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T13:43:28.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:30.940Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:33.548Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:33.749Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:33.886Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:34.039Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:34.199Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:34.359Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:34.616Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:34.721Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:43:39.635Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:39.748Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:43:42.272Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ab7ca1cd-8606-401d-a388-60b416ba8647","members":[{"id":"81268d00-6a4c-4440-b9a5-87a0f10682a3","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":401},"start":{"column":5,"line":23,"offset":381}},"value":{"id":"67838d76-bea6-4bc2-90e1-4197d2312f6e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":401},"start":{"column":23,"line":23,"offset":399}},"value":[{"id":"40823af2-a464-4f3f-8a15-4967c5b02411","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}}],"metadata":[],"name":"grupo","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":46,"line":25,"offset":450},"start":{"column":5,"line":25,"offset":409}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":453},"start":{"column":1,"line":22,"offset":362}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:43:47.413Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ab7ca1cd-8606-401d-a388-60b416ba8647","members":[{"id":"81268d00-6a4c-4440-b9a5-87a0f10682a3","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":401},"start":{"column":5,"line":23,"offset":381}},"value":{"id":"67838d76-bea6-4bc2-90e1-4197d2312f6e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":401},"start":{"column":23,"line":23,"offset":399}},"value":[{"id":"40823af2-a464-4f3f-8a15-4967c5b02411","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}}],"metadata":[],"name":"grupo","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":46,"line":25,"offset":450},"start":{"column":5,"line":25,"offset":409}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":453},"start":{"column":1,"line":22,"offset":362}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:43:48.350Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"ab7ca1cd-8606-401d-a388-60b416ba8647","members":[{"id":"81268d00-6a4c-4440-b9a5-87a0f10682a3","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":401},"start":{"column":5,"line":23,"offset":381}},"value":{"id":"67838d76-bea6-4bc2-90e1-4197d2312f6e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":401},"start":{"column":23,"line":23,"offset":399}},"value":[{"id":"40823af2-a464-4f3f-8a15-4967c5b02411","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}}],"metadata":[],"name":"grupo","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":46,"line":25,"offset":450},"start":{"column":5,"line":25,"offset":409}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":453},"start":{"column":1,"line":22,"offset":362}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:44:24.254Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":154,"timestamp":"2024-11-22T13:44:26.978Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T13:44:27.127Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":195,"timestamp":"2024-11-22T13:44:27.323Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:27.324Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:44:27.445Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:27.446Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T13:44:27.578Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:27.589Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":134,"timestamp":"2024-11-22T13:44:27.724Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:27.805Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:44:27.927Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:27.927Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:44:28.038Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:28.102Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:44:28.390Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:44:28.683Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:44:29.268Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":141,"timestamp":"2024-11-22T13:44:29.408Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:44:29.514Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:44:30.087Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:44:30.379Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":154,"timestamp":"2024-11-22T13:44:33.966Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:34.859Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:44:35.059Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:44:35.323Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:44:36.341Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{54900f} at intensamente.wlk:25 exhausted all cases without a match [Parameter]{54900f} at intensamente.wlk:25 exhausted all cases without a match","stack":"Error: [Parameter]{54900f} at intensamente.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:44:36.362Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{acd78a} at intensamente.wlk:25 exhausted all cases without a match [Parameter]{acd78a} at intensamente.wlk:25 exhausted all cases without a match","stack":"Error: [Parameter]{acd78a} at intensamente.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:44:36.615Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{88711e} at intensamente.wlk:25 exhausted all cases without a match [Parameter]{88711e} at intensamente.wlk:25 exhausted all cases without a match","stack":"Error: [Parameter]{88711e} at intensamente.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:44:37.086Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:44:37.361Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{88cbea} at intensamente.wlk:25 exhausted all cases without a match [Send]{88cbea} at intensamente.wlk:25 exhausted all cases without a match","stack":"Error: [Send]{88cbea} at intensamente.wlk:25 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:44:39.663Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{0ccda6} at intensamente.wlk:-- exhausted all cases without a match [Return]{0ccda6} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{0ccda6} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:44:39.663Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:39.754Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:39.825Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:39.905Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:40.058Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":184,"timestamp":"2024-11-22T13:44:40.242Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:40.306Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:44:40.463Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:44:40.669Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:44:47.008Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:44:47.762Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:44:47.865Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:45:15.782Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:45:17.087Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:45:29.643Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:45:30.444Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:45:42.017Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:45:43.024Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:45:43.133Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:45:47.358Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:45:49.388Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:45:49.389Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:45:49.462Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:45:49.544Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":177,"timestamp":"2024-11-22T13:45:49.722Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:45:49.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:45:49.939Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:49.952Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:45:49.952Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:50.115Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class E\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class E\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:50.491Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Es\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Es\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:50.752Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Esp\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Esp\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:51.088Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Espc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Espc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:51.216Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Esp\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Esp\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:51.727Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Espe\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Espe\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:51.804Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Espec\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Espec\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:51.919Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especi\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especi\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:52.012Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especia\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especia\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:52.143Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:52.271Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:52.673Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial i\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial i\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:52.907Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:45:52.923Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial in\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial in\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:53.112Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inh\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inh\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:53.496Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inhe\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inhe\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:53.573Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inher\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inher\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:53.654Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inheri\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inheri\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:53.835Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inherit\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 78 | }\n 79 | \n> 80 | class Especial inherit\n | ^\n 81 | \n 82 | class Evento{\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:54.053Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:54.226Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits \n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:54.381Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits E\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits E\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:54.938Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Em\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Em\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:55.118Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:55.316Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emco\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emco\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:55.342Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emcoi\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emcoi\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:55.551Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emcoio\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emcoio\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:55.733Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emcoi\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emcoi\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.031Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emco\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emco\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.167Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.300Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Em\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Em\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.424Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emo\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emo\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.617Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emoc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emoc\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.821Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emoci\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emoci\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:56.904Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocio\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocio\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:57.089Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocion\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocion\n 81 | \n> 82 | class Evento{\n | ^\n 83 | const property impacto\n 84 | const descripcion\n\nExpected one of the following: \n\n'(', '.', 'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:45:57.282Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:45:58.067Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:45:58.288Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:45:59.551Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:08.067Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:46:08.641Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T13:46:18.592Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T13:46:20.357Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:20.524Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T13:46:20.744Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:20.814Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:20.879Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:20.939Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:21.829Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:21.893Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:22.658Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocion{\n 81 | override method\n> 82 | }\n | ^\n 83 | \n 84 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocion{\n 81 | override method\n> 82 | }\n | ^\n 83 | \n 84 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:46:22.766Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocion{\n 81 | override method \n> 82 | }\n | ^\n 83 | \n 84 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | class Especial inherits Emocion{\n 81 | override method \n> 82 | }\n | ^\n 83 | \n 84 | class Evento{\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:46:23.157Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:46:25.832Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":155,"timestamp":"2024-11-22T13:46:26.336Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{6e6aba} at intensamente.wlk:81 exhausted all cases without a match [Parameter]{6e6aba} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Parameter]{6e6aba} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:46:29.859Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:29.948Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e6ebf8} at intensamente.wlk:81 exhausted all cases without a match [Parameter]{e6ebf8} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Parameter]{e6ebf8} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:46:30.032Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{3518ea} at intensamente.wlk:81 exhausted all cases without a match [Parameter]{3518ea} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Parameter]{3518ea} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:46:30.460Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:30.553Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{befed9} at intensamente.wlk:81 exhausted all cases without a match [Parameter]{befed9} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Parameter]{befed9} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:46:30.634Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":278,"timestamp":"2024-11-22T13:46:32.761Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:32.941Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:46:33.364Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Super]{b91235} at intensamente.wlk:82 exhausted all cases without a match [Super]{b91235} at intensamente.wlk:82 exhausted all cases without a match","stack":"Error: [Super]{b91235} at intensamente.wlk:82 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:34.193Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:34.285Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:34.350Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:34.418Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:34.682Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":144,"timestamp":"2024-11-22T13:46:44.123Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:46:44.584Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:46:45.042Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:46:45.212Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:46:45.939Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:46.035Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:46.100Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:46:46.201Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:46.263Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T13:46:46.898Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:46:48.193Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:46:49.818Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:46:50.128Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{a5d29f} at intensamente.wlk:-- exhausted all cases without a match [Return]{a5d29f} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{a5d29f} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:52.377Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:46:52.484Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:52.650Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:46:52.727Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:46:52.841Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{aaf9b4} at intensamente.wlk:-- exhausted all cases without a match [Return]{aaf9b4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{aaf9b4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:52.862Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:46:52.971Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:46:53.072Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{af8ee5} at intensamente.wlk:-- exhausted all cases without a match [Return]{af8ee5} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{af8ee5} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:53.268Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b26cd7} at intensamente.wlk:-- exhausted all cases without a match [Return]{b26cd7} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b26cd7} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:53.691Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{77080a} at intensamente.wlk:-- exhausted all cases without a match [Return]{77080a} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{77080a} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:54.149Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b849f2} at intensamente.wlk:-- exhausted all cases without a match [Return]{b849f2} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b849f2} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:54.430Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{a7a99c} at intensamente.wlk:-- exhausted all cases without a match [Return]{a7a99c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{a7a99c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:54.810Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{6abe5f} at intensamente.wlk:-- exhausted all cases without a match [Return]{6abe5f} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{6abe5f} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:54.979Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bb20e6} at intensamente.wlk:-- exhausted all cases without a match [Return]{bb20e6} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bb20e6} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:55.157Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{9d62c4} at intensamente.wlk:-- exhausted all cases without a match [Return]{9d62c4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{9d62c4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:55.494Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":143,"timestamp":"2024-11-22T13:46:56.415Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":224,"timestamp":"2024-11-22T13:46:56.727Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{885fee} at intensamente.wlk:-- exhausted all cases without a match [Return]{885fee} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{885fee} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:56.820Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{cac8a3} at intensamente.wlk:-- exhausted all cases without a match [Return]{cac8a3} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{cac8a3} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:46:57.223Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:46:58.010Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:46:58.260Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b7a4e5} at intensamente.wlk:81 exhausted all cases without a match [Send]{b7a4e5} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{b7a4e5} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:00.839Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{2a9a46} at intensamente.wlk:-- exhausted all cases without a match [Return]{2a9a46} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{2a9a46} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:00.839Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:00.926Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:00.993Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:02.034Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8f8482} at intensamente.wlk:81 exhausted all cases without a match [Send]{8f8482} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{8f8482} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:02.529Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{bf6a6b} at intensamente.wlk:-- exhausted all cases without a match [Return]{bf6a6b} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{bf6a6b} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:02.530Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T13:47:02.658Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:02.752Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:47:02.864Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{24688b} at intensamente.wlk:81 exhausted all cases without a match [Send]{24688b} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{24688b} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:02.882Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{5ccc3f} at intensamente.wlk:-- exhausted all cases without a match [Return]{5ccc3f} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{5ccc3f} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:02.883Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{231df2} at intensamente.wlk:81 exhausted all cases without a match [Send]{231df2} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{231df2} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:03.456Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{42121c} at intensamente.wlk:-- exhausted all cases without a match [Return]{42121c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{42121c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:03.456Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{131453} at intensamente.wlk:81 exhausted all cases without a match [Send]{131453} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{131453} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:03.845Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{ec0a80} at intensamente.wlk:-- exhausted all cases without a match [Return]{ec0a80} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{ec0a80} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:03.845Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{0dd34c} at intensamente.wlk:81 exhausted all cases without a match [Send]{0dd34c} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{0dd34c} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:04.222Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b144be} at intensamente.wlk:-- exhausted all cases without a match [Return]{b144be} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b144be} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:04.222Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8f70b6} at intensamente.wlk:81 exhausted all cases without a match [Send]{8f70b6} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{8f70b6} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:04.750Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{56cb9c} at intensamente.wlk:-- exhausted all cases without a match [Return]{56cb9c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{56cb9c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:04.750Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{276409} at intensamente.wlk:81 exhausted all cases without a match [Send]{276409} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{276409} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:04.998Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{29790b} at intensamente.wlk:-- exhausted all cases without a match [Return]{29790b} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{29790b} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:04.998Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{23255c} at intensamente.wlk:81 exhausted all cases without a match [Send]{23255c} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: [Send]{23255c} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:47:05.335Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{da5ff1} at intensamente.wlk:-- exhausted all cases without a match [Return]{da5ff1} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{da5ff1} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:47:05.335Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:47:23.787Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:47:23.893Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:32.573Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:47:32.680Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:32.681Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:32.760Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:32.926Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T13:47:33.034Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:33.114Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:33.928Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:47:34.040Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:47:34.651Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:47:34.652Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T13:47:34.772Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T13:48:04.436Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:04.631Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:48:04.825Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:04.830Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:04.910Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:48:05.111Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:05.175Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:48:05.301Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:05.302Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T13:48:05.423Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:05.597Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:05.667Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:05.841Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:05.997Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:48:06.100Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:06.188Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:06.707Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:48:07.330Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.g [Field]{de8ee0} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.g [Field]{de8ee0} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.g [Field]{de8ee0} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:13.556Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.gu [Field]{051e32} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.gu [Field]{051e32} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.gu [Field]{051e32} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:13.729Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.guar [Field]{6c2f61} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.guar [Field]{6c2f61} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.guar [Field]{6c2f61} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:13.974Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.guard [Field]{f8af78} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.guard [Field]{f8af78} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.guard [Field]{f8af78} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:14.232Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:48:14.755Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:48:14.859Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.i [Field]{b1c11b} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.i [Field]{b1c11b} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.i [Field]{b1c11b} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:15.916Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.in [Field]{07ba0b} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.in [Field]{07ba0b} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.in [Field]{07ba0b} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:16.145Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.int [Field]{c391e7} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.int [Field]{c391e7} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.int [Field]{c391e7} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:16.454Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.inte [Field]{4b2ae6} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.inte [Field]{4b2ae6} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.inte [Field]{4b2ae6} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:16.623Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.intens [Field]{4b7548} at intensamente.wlk:81 exhausted all cases without a match intensamente.Especial.intens [Field]{4b7548} at intensamente.wlk:81 exhausted all cases without a match","stack":"Error: intensamente.Especial.intens [Field]{4b7548} at intensamente.wlk:81 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:48:16.886Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5dcef4} at intensamente.wlk:82 exhausted all cases without a match [Send]{5dcef4} at intensamente.wlk:82 exhausted all cases without a match","stack":"Error: [Send]{5dcef4} at intensamente.wlk:82 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:48:22.205Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{997197} at intensamente.wlk:-- exhausted all cases without a match [Return]{997197} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{997197} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:48:22.205Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:22.291Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:48:22.483Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T13:48:23.004Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:27.298Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:27.385Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:27.468Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:27.617Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:27.968Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:29.598Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":149,"timestamp":"2024-11-22T13:48:31.291Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T13:48:34.355Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{faa99a} at intensamente.wlk:85 exhausted all cases without a match [Assignment]{faa99a} at intensamente.wlk:85 exhausted all cases without a match","stack":"Error: [Assignment]{faa99a} at intensamente.wlk:85 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:48:34.385Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:48:34.490Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:34.491Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:34.572Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:34.634Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:34.876Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T13:48:43.927Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T13:48:52.570Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:48:52.677Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T13:49:39.354Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:49:39.469Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:49:40.523Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:49:40.523Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:49:40.901Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:49:41.265Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.va [Field]{3129eb} at intensamente.wlk:57 exhausted all cases without a match intensamente.Alegria.va [Field]{3129eb} at intensamente.wlk:57 exhausted all cases without a match","stack":"Error: intensamente.Alegria.va [Field]{3129eb} at intensamente.wlk:57 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:49:41.456Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:49:41.725Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.valo [Field]{1d9f7d} at intensamente.wlk:57 exhausted all cases without a match intensamente.Alegria.valo [Field]{1d9f7d} at intensamente.wlk:57 exhausted all cases without a match","stack":"Error: intensamente.Alegria.valo [Field]{1d9f7d} at intensamente.wlk:57 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:49:41.819Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T13:49:52.776Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T13:49:54.454Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"b424a48a-b8e3-4a89-a389-350a0164b9ef","members":[{"id":"3d9b4dce-9aeb-4d18-9b17-6c1ad5226a7d","isConstant":false,"isProperty":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":57,"offset":1224},"start":{"column":5,"line":57,"offset":1215}},"value":{"id":"e5a79d4a-fdf6-44d5-b0bb-2f22e2ccae01","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"ac240be1-3ff5-4fd5-9290-13c3595ec11d","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ce5c8a4a-b73f-4c43-bd14-6ce1463dff64","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"042d7d77-9fd7-48e2-96eb-5857fc381723","message":"eventosPar","metadata":[],"receiver":{"id":"6e5af0d8-1998-46db-b0b4-83f9e0667d17","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":61,"offset":1357},"start":{"column":68,"line":61,"offset":1353}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1370},"start":{"column":68,"line":61,"offset":1353}}}],"id":"acb685d2-cc0d-47ef-9ed5-6658f39e02ca","message":"&&","metadata":[],"receiver":{"args":[],"id":"56fc6bf7-810c-4d32-9190-d1ec69723d8d","message":"intensidadElevada","metadata":[],"receiver":{"id":"e0932c6d-484b-4ca4-b1c3-8feb39d16d30","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":61,"offset":1329},"start":{"column":40,"line":61,"offset":1325}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":61,"offset":1349},"start":{"column":40,"line":61,"offset":1325}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1370},"start":{"column":40,"line":61,"offset":1325}}}}],"sourceMap":{"end":{"column":85,"line":61,"offset":1370},"start":{"column":40,"line":61,"offset":1325}}},"id":"ee918ae9-e2cb-46bb-aedf-abbba1f3acbe","isOverride":false,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1370},"start":{"column":14,"line":61,"offset":1299}}},{"body":{"id":"8eade6b7-342c-43c6-802d-9ced0aa986c8","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2c2015bc-8d64-4403-a601-0342fb5c1498","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"a79122a9-091a-44b4-9498-88b3adcd5568","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1422},"start":{"column":48,"line":63,"offset":1421}},"value":0}],"id":"f0a93443-a165-42f8-a6ec-9c4d658c1aee","message":"==","metadata":[],"receiver":{"args":[{"id":"e47ae4a5-9a97-4750-9e0e-2bb1d4dd16a6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1417},"start":{"column":43,"line":63,"offset":1416}},"value":2}],"id":"d7919efd-8a86-4934-a4e2-46de7ef04a79","message":"%","metadata":[],"receiver":{"id":"16fae18f-3367-4d10-a555-0e453999d509","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":63,"offset":1415},"start":{"column":27,"line":63,"offset":1400}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1417},"start":{"column":27,"line":63,"offset":1400}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1422},"start":{"column":27,"line":63,"offset":1400}}}}],"sourceMap":{"end":{"column":49,"line":63,"offset":1422},"start":{"column":27,"line":63,"offset":1400}}},"id":"a7cb6d78-e28d-4809-a41e-1a24fd3e03df","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1422},"start":{"column":5,"line":63,"offset":1378}}}],"metadata":[],"name":"Alegria","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":13,"line":61,"offset":1298},"start":{"column":5,"line":58,"offset":1230}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":65,"offset":1431},"start":{"column":1,"line":56,"offset":1178}},"supertypes":[{"args":[],"id":"42a52a06-6a81-4bca-aa13-123c995dfcd2","metadata":[],"reference":{"id":"7b87055d-f15a-43cc-81ff-b16469d9ef39","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":56,"offset":1208},"start":{"column":24,"line":56,"offset":1201}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":56,"offset":1208},"start":{"column":24,"line":56,"offset":1201}}}]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:49:55.738Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:49:58.860Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:49:59.229Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:49:59.615Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:49:59.943Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 62 | method eventosPar() = cantidadEventos%2 == 0\n 63 | \n> 64 | }\n | ^\n 65 | \n 66 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:50:09.641Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":148,"timestamp":"2024-11-22T13:50:15.145Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:50:38.562Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":153,"timestamp":"2024-11-22T13:50:38.716Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:50:45.467Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:50:45.739Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:50:46.177Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:50:46.283Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:50:46.877Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T13:51:20.644Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:51:20.760Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":145,"timestamp":"2024-11-22T13:51:40.857Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:51:44.403Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:51:44.511Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:52:06.572Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:52:10.136Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:10.259Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:11.004Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:11.513Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:11.859Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:12.988Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:13.737Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:13.884Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:14.034Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:14.160Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 72 | super(evento)\n 73 | causa = evento.descripcion()\n> 74 | }\n | ^\n 75 | }\n 76 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:52:14.287Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:19.741Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:19.836Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:52:20.045Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:52:20.687Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:21.549Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:52:21.656Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:21.656Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:52:21.765Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:21.940Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:52:22.459Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:22.460Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:22.626Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:22.722Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:22.795Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:22.948Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.va [Field]{1a9f9f} at intensamente.wlk:67 exhausted all cases without a match intensamente.Tristeza.va [Field]{1a9f9f} at intensamente.wlk:67 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.va [Field]{1a9f9f} at intensamente.wlk:67 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:23.364Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:23.610Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.varlo [Field]{f1549c} at intensamente.wlk:67 exhausted all cases without a match intensamente.Tristeza.varlo [Field]{f1549c} at intensamente.wlk:67 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.varlo [Field]{f1549c} at intensamente.wlk:67 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:23.858Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T13:52:24.093Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.varl [Field]{149f4d} at intensamente.wlk:67 exhausted all cases without a match intensamente.Tristeza.varl [Field]{149f4d} at intensamente.wlk:67 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.varl [Field]{149f4d} at intensamente.wlk:67 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:24.606Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.val [Field]{088f52} at intensamente.wlk:67 exhausted all cases without a match intensamente.Tristeza.val [Field]{088f52} at intensamente.wlk:67 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.val [Field]{088f52} at intensamente.wlk:67 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:25.199Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Tristeza.valo [Field]{9bed3a} at intensamente.wlk:67 exhausted all cases without a match intensamente.Tristeza.valo [Field]{9bed3a} at intensamente.wlk:67 exhausted all cases without a match","stack":"Error: intensamente.Tristeza.valo [Field]{9bed3a} at intensamente.wlk:67 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:25.374Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:52:30.662Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:40.875Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:40.951Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:41.124Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:41.278Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:41.429Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:41.576Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T13:52:43.628Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:52:43.906Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{cc267a} at intensamente.wlk:84 exhausted all cases without a match [Send]{cc267a} at intensamente.wlk:84 exhausted all cases without a match","stack":"Error: [Send]{cc267a} at intensamente.wlk:84 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:52:48.090Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{133ae0} at intensamente.wlk:-- exhausted all cases without a match [Return]{133ae0} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{133ae0} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:52:48.090Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:48.176Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:52:55.427Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:55.634Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:55.789Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:55.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:56.029Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:56.194Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:56.359Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:56.458Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.reu [Field]{d29bba} at intensamente.wlk:83 exhausted all cases without a match intensamente.Especial.reu [Field]{d29bba} at intensamente.wlk:83 exhausted all cases without a match","stack":"Error: intensamente.Especial.reu [Field]{d29bba} at intensamente.wlk:83 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:56.636Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:52:57.050Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.re [Field]{9c6b40} at intensamente.wlk:83 exhausted all cases without a match intensamente.Especial.re [Field]{9c6b40} at intensamente.wlk:83 exhausted all cases without a match","stack":"Error: intensamente.Especial.re [Field]{9c6b40} at intensamente.wlk:83 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:57.133Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.recuerd [Field]{03d4eb} at intensamente.wlk:83 exhausted all cases without a match intensamente.Especial.recuerd [Field]{03d4eb} at intensamente.wlk:83 exhausted all cases without a match","stack":"Error: intensamente.Especial.recuerd [Field]{03d4eb} at intensamente.wlk:83 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:52:57.825Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T13:52:58.441Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:52:58.866Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{53ba98} at intensamente.wlk:-- exhausted all cases without a match [Return]{53ba98} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{53ba98} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:53:01.864Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:02.024Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:53:03.193Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T13:53:04.229Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{c709ff} at intensamente.wlk:88 exhausted all cases without a match [Assignment]{c709ff} at intensamente.wlk:88 exhausted all cases without a match","stack":"Error: [Assignment]{c709ff} at intensamente.wlk:88 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:53:07.984Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:08.143Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:53:08.873Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Especial.precuerdo [Field]{c7e2a5} at intensamente.wlk:83 exhausted all cases without a match intensamente.Especial.precuerdo [Field]{c7e2a5} at intensamente.wlk:83 exhausted all cases without a match","stack":"Error: intensamente.Especial.precuerdo [Field]{c7e2a5} at intensamente.wlk:83 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:53:10.596Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:10.688Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:10.780Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:10.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:11.407Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T13:53:15.506Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{8adb53} at intensamente.wlk:88 exhausted all cases without a match [Assignment]{8adb53} at intensamente.wlk:88 exhausted all cases without a match","stack":"Error: [Assignment]{8adb53} at intensamente.wlk:88 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:53:15.525Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:15.677Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:15.995Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:16.815Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:53:16.921Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:17.217Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:17.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:18.008Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:53:22.516Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:34.584Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:34.664Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:53:34.869Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:53:34.874Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:53:34.978Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | }\n 81 | \n> 82 | class Especial inh\n | ^\n 83 | erits Emocion{\n 84 | var property recuerdo = 10\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 80 | }\n 81 | \n> 82 | class Especial inh\n | ^\n 83 | erits Emocion{\n 84 | var property recuerdo = 10\n\nExpected one of the following: \n\n'inherits', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:53:38.789Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":143,"timestamp":"2024-11-22T13:53:42.616Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:53:43.132Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:53:44.643Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T13:53:47.986Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T13:53:48.428Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:53:51.440Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:53:51.552Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":145,"timestamp":"2024-11-22T13:53:54.664Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T13:53:56.972Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:53:59.801Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:54:00.069Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T13:54:08.106Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:54:10.015Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:54:11.669Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:54:12.771Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:54:12.955Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:54:13.784Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:54:14.049Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:54:15.367Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T13:54:15.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:20.466Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:54:23.922Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:54:24.213Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:54:24.498Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T13:54:24.631Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T13:54:24.952Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:54:25.072Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:29.702Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:54:29.819Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":311,"timestamp":"2024-11-22T13:54:36.072Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T13:54:37.906Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:54:38.116Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:50.649Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:50.719Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:50.906Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:50.978Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:54:51.279Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:51.279Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:51.356Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:51.513Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.em [Variable]{f3b48d} at intensamente.wlk:102 exhausted all cases without a match intensamente.em [Variable]{f3b48d} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.em [Variable]{f3b48d} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:54:51.690Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":148,"timestamp":"2024-11-22T13:54:52.151Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emoci [Variable]{003b7b} at intensamente.wlk:102 exhausted all cases without a match intensamente.emoci [Variable]{003b7b} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.emoci [Variable]{003b7b} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:54:52.167Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion2 [Variable]{309db5} at intensamente.wlk:102 exhausted all cases without a match intensamente.emocion2 [Variable]{309db5} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.emocion2 [Variable]{309db5} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:54:52.674Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:54:52.878Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:54:53.076Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T13:54:54.089Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion2 [Variable]{5317c9} at intensamente.wlk:102 exhausted all cases without a match intensamente.emocion2 [Variable]{5317c9} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.emocion2 [Variable]{5317c9} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:54:54.512Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:54.604Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:54:54.667Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":145,"timestamp":"2024-11-22T13:54:58.155Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":251,"timestamp":"2024-11-22T13:54:58.406Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:54:58.509Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T13:54:59.171Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:54:59.274Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:55:00.067Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:55:01.074Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:03.252Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:55:03.446Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:55:03.636Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":163,"timestamp":"2024-11-22T13:55:03.980Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T13:55:21.190Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:55:24.578Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{0a2d26} at intensamente.wlk:103 exhausted all cases without a match [Literal]{0a2d26} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: [Literal]{0a2d26} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:55:24.819Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{73cc58} at intensamente.wlk:103 exhausted all cases without a match [NamedArgument]{73cc58} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: [NamedArgument]{73cc58} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:55:24.820Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T13:55:25.023Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:25.023Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:25.207Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:25.278Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:25.357Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:55:25.470Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:25.655Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:25.810Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{1b7b1d} at intensamente.wlk:103 exhausted all cases without a match [Literal]{1b7b1d} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: [Literal]{1b7b1d} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:55:25.980Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{3342de} at intensamente.wlk:103 exhausted all cases without a match [NamedArgument]{3342de} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: [NamedArgument]{3342de} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:55:25.981Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:55:26.175Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:55:40.056Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:55:41.201Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T13:55:41.609Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:42.582Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:42.772Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:42.843Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:42.996Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:55:43.094Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:43.095Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:55:43.199Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:43.199Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:55:43.612Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:55:46.744Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:47.304Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T13:55:47.732Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":150,"timestamp":"2024-11-22T13:55:48.206Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{ccfa94} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{ccfa94} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{ccfa94} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:55:49.453Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:49.539Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e8224a} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{e8224a} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{e8224a} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:55:49.678Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{a120fd} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{a120fd} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{a120fd} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:55:50.010Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:55:50.922Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:55:51.174Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:55:52.390Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{8dde2d} at intensamente.wlk:-- exhausted all cases without a match [Return]{8dde2d} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{8dde2d} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:55:52.408Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:52.493Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:55:59.389Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:02.006Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:02.081Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:02.264Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":157,"timestamp":"2024-11-22T13:56:14.448Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":150,"timestamp":"2024-11-22T13:56:14.599Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:56:24.745Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:56:25.225Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T13:56:26.299Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:28.933Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T13:56:29.130Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T13:56:29.505Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:56:31.285Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:32.869Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:33.025Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:33.089Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:33.333Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadD [Field]{cf8082} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidadD [Field]{cf8082} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadD [Field]{cf8082} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:56:36.679Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T13:56:36.970Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDe [Field]{800ed9} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidadDe [Field]{800ed9} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDe [Field]{800ed9} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:56:37.004Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDef [Field]{f65507} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidadDef [Field]{f65507} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDef [Field]{f65507} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:56:37.372Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":156,"timestamp":"2024-11-22T13:56:37.529Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefa [Field]{e4dc7e} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidadDefa [Field]{e4dc7e} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefa [Field]{e4dc7e} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:56:37.660Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T13:56:37.780Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:56:37.881Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefault [Field]{78f97a} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidadDefault [Field]{78f97a} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefault [Field]{78f97a} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:56:38.034Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:56:39.068Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidadDefault [Field]{d72494} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidadDefault [Field]{d72494} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidadDefault [Field]{d72494} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:56:39.952Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T13:56:40.065Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:40.066Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:40.133Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:40.314Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:53.346Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:55.713Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:57.890Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.criterioIntensidad [Field]{1379a9} at intensamente.wlk:31 exhausted all cases without a match intensamente.Emocion.criterioIntensidad [Field]{1379a9} at intensamente.wlk:31 exhausted all cases without a match","stack":"Error: intensamente.Emocion.criterioIntensidad [Field]{1379a9} at intensamente.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:56:57.906Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:57.908Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:58.127Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:58.298Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:58.453Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:58.663Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:56:58.663Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:58.822Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:58.911Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:59.138Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:59.270Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:59.368Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:59.609Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:56:59.743Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T13:57:02.674Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:07.044Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:08.006Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:08.031Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:08.288Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:08.394Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:08.558Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{2af8aa} at intensamente.wlk:36 exhausted all cases without a match [Literal]{2af8aa} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Literal]{2af8aa} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:57:08.578Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{925080} at intensamente.wlk:-- exhausted all cases without a match [Return]{925080} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{925080} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T13:57:08.578Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:08.595Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{2af8aa} at intensamente.wlk:36 exhausted all cases without a match [Literal]{2af8aa} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Literal]{2af8aa} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:57:08.610Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{925080} at intensamente.wlk:-- exhausted all cases without a match [Return]{925080} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{925080} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T13:57:08.610Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:11.083Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{6cf972} at intensamente.wlk:-- exhausted all cases without a match [Return]{6cf972} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{6cf972} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:57:11.257Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T13:57:11.365Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:11.365Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:11.435Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:11.508Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T13:57:11.723Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:11.810Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:11.884Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:18.320Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T13:57:19.400Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":142,"timestamp":"2024-11-22T13:57:19.622Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:19.800Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:19.872Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:19.881Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:19.881Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:20.334Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:20.335Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:20.899Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:20.962Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:21.111Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:21.281Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:57:21.384Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:21.616Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:57:21.880Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:23.824Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T13:57:25.419Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{026c3c} at intensamente.wlk:-- exhausted all cases without a match [Return]{026c3c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{026c3c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:57:25.800Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:25.885Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:26.176Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:57:26.368Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c3b59b} at intensamente.wlk:-- exhausted all cases without a match [Send]{c3b59b} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{c3b59b} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:57:37.926Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{7dab41} at intensamente.wlk:43 exhausted all cases without a match [Assignment]{7dab41} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Assignment]{7dab41} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T13:57:37.927Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{62021f} at intensamente.wlk:42 exhausted all cases without a match [If]{62021f} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{62021f} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)","timestamp":"2024-11-22T13:57:37.927Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:38.026Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:57:38.134Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:38.135Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:38.213Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:57:38.315Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:38.481Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:57:42.013Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:57:56.858Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{ef3a65} at intensamente.wlk:38 exhausted all cases without a match [Parameter]{ef3a65} at intensamente.wlk:38 exhausted all cases without a match","stack":"Error: [Parameter]{ef3a65} at intensamente.wlk:38 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:57:56.895Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":129,"timestamp":"2024-11-22T13:57:57.028Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T13:57:57.134Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{d1afcb} at intensamente.wlk:38 exhausted all cases without a match [Parameter]{d1afcb} at intensamente.wlk:38 exhausted all cases without a match","stack":"Error: [Parameter]{d1afcb} at intensamente.wlk:38 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:57:57.244Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:57:57.425Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:57:57.627Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:57:57.731Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:57:57.839Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T13:57:59.275Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T13:58:00.384Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{c6963f} at intensamente.wlk:43 exhausted all cases without a match [Send]{c6963f} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{c6963f} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:00.409Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{5d5448} at intensamente.wlk:42 exhausted all cases without a match [If]{5d5448} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{5d5448} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:00.409Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:58:00.529Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:58:00.636Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:00.636Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:00.720Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9881f2} at intensamente.wlk:43 exhausted all cases without a match [Send]{9881f2} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{9881f2} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:01.007Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{25c2cb} at intensamente.wlk:42 exhausted all cases without a match [If]{25c2cb} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{25c2cb} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:01.007Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b1608f} at intensamente.wlk:43 exhausted all cases without a match [Send]{b1608f} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{b1608f} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:01.208Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{df8fea} at intensamente.wlk:42 exhausted all cases without a match [If]{df8fea} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{df8fea} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:01.209Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{6b4065} at intensamente.wlk:43 exhausted all cases without a match [Send]{6b4065} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{6b4065} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:01.293Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{ff6cd5} at intensamente.wlk:42 exhausted all cases without a match [If]{ff6cd5} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{ff6cd5} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:01.293Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7128b0} at intensamente.wlk:43 exhausted all cases without a match [Send]{7128b0} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{7128b0} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:01.421Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{6ec180} at intensamente.wlk:42 exhausted all cases without a match [If]{6ec180} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{6ec180} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:01.421Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T13:58:01.620Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{15e9df} at intensamente.wlk:43 exhausted all cases without a match [Send]{15e9df} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{15e9df} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:01.910Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{e22d6b} at intensamente.wlk:42 exhausted all cases without a match [If]{e22d6b} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{e22d6b} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:01.910Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T13:58:02.365Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:02.371Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:02.451Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{69581a} at intensamente.wlk:43 exhausted all cases without a match [Send]{69581a} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [Send]{69581a} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:58:10.124Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{65ad17} at intensamente.wlk:42 exhausted all cases without a match [If]{65ad17} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [If]{65ad17} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T13:58:10.124Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:10.217Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T13:58:10.469Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:58:11.031Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":139,"timestamp":"2024-11-22T13:58:12.431Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:12.433Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T13:58:12.599Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:12.603Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:58:12.794Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T13:58:12.912Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T13:58:13.306Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T13:58:13.781Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T13:58:15.326Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:58:25.793Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T13:58:26.431Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:58:26.621Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:58:26.892Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T13:59:27.936Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:59:28.143Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.intensidad [Field]{704511} at intensamente.wlk:29 exhausted all cases without a match intensamente.Emocion.intensidad [Field]{704511} at intensamente.wlk:29 exhausted all cases without a match","stack":"Error: intensamente.Emocion.intensidad [Field]{704511} at intensamente.wlk:29 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T13:59:35.651Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{5b70b6} at intensamente.wlk:-- exhausted all cases without a match [Return]{5b70b6} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{5b70b6} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T13:59:38.274Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T13:59:38.372Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T13:59:47.292Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T13:59:47.680Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T13:59:47.788Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":156,"timestamp":"2024-11-22T13:59:51.723Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T13:59:51.829Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T13:59:52.897Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":150,"timestamp":"2024-11-22T13:59:53.277Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T13:59:53.385Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T13:59:53.736Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T13:59:54.738Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T13:59:55.117Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:31.665Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":159,"timestamp":"2024-11-22T14:00:32.001Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":191,"timestamp":"2024-11-22T14:00:32.192Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":186,"timestamp":"2024-11-22T14:00:32.382Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method intensidadElevada() = intensidad>criterioIntensidad\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:32.415Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":212,"timestamp":"2024-11-22T14:00:32.629Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":159,"timestamp":"2024-11-22T14:00:32.788Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":196,"timestamp":"2024-11-22T14:00:33.096Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":210,"timestamp":"2024-11-22T14:00:33.307Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T14:00:33.449Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:00:33.569Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T14:00:33.722Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":148,"timestamp":"2024-11-22T14:00:33.871Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":235,"timestamp":"2024-11-22T14:00:34.164Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":158,"timestamp":"2024-11-22T14:00:34.323Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":182,"timestamp":"2024-11-22T14:00:34.507Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":214,"timestamp":"2024-11-22T14:00:34.727Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:35.425Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:35.828Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:36.367Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:36.757Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:37.162Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | method intensidadElevada() = intensidad>criterioIntensidad\n 46 | \n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:00:37.482Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T14:00:45.485Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":128,"timestamp":"2024-11-22T14:00:45.961Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:01:11.293Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:01:27.388Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9edeb7} at testExample.wtest:10 exhausted all cases without a match [Send]{9edeb7} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{9edeb7} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:27.559Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d05f1f} at testExample.wtest:10 exhausted all cases without a match [Send]{d05f1f} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{d05f1f} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:27.559Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:27.668Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:28.240Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:01:28.351Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{944e01} at testExample.wtest:10 exhausted all cases without a match [Send]{944e01} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{944e01} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:29.132Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ac0cae} at testExample.wtest:10 exhausted all cases without a match [Send]{ac0cae} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{ac0cae} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:29.132Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:29.231Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:29.289Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:29.353Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:29.972Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:01:30.406Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{047b2a} at intensamente.wlk:23 exhausted all cases without a match [Literal]{047b2a} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: [Literal]{047b2a} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:49.312Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{4cfe70} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{4cfe70} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{4cfe70} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:49.312Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:01:49.417Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:49.417Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T14:01:49.707Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:49.786Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:01:50.001Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{4c18be} at intensamente.wlk:23 exhausted all cases without a match [Literal]{4c18be} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: [Literal]{4c18be} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:50.026Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{3875d0} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{3875d0} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{3875d0} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:50.027Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:01:50.201Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{3fb94f} at intensamente.wlk:23 exhausted all cases without a match [Literal]{3fb94f} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: [Literal]{3fb94f} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:50.425Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{07fe84} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{07fe84} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{07fe84} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:50.425Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:01:50.531Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T14:01:52.393Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T14:01:53.839Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{d588d2} at intensamente.wlk:23 exhausted all cases without a match [Literal]{d588d2} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: [Literal]{d588d2} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:54.124Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{3a8b94} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{3a8b94} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{3a8b94} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:54.125Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:54.215Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:01:54.295Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{6647c0} at intensamente.wlk:23 exhausted all cases without a match [Literal]{6647c0} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: [Literal]{6647c0} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:54.475Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{a9e9d2} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{a9e9d2} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{a9e9d2} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:54.475Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{13f9a6} at intensamente.wlk:23 exhausted all cases without a match [Literal]{13f9a6} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: [Literal]{13f9a6} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:01:54.685Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{2471b5} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{2471b5} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{2471b5} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:01:54.685Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:01:55.015Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:02:02.002Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:02.003Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:02.074Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:02.255Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:02.327Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:02:02.578Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:02.579Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:02:02.611Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ram [Variable]{dc5be9} at intensamente.wlk:105 exhausted all cases without a match intensamente.ram [Variable]{dc5be9} at intensamente.wlk:105 exhausted all cases without a match","stack":"Error: intensamente.ram [Variable]{dc5be9} at intensamente.wlk:105 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:02:03.298Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.rami [Variable]{aa099b} at intensamente.wlk:105 exhausted all cases without a match intensamente.rami [Variable]{aa099b} at intensamente.wlk:105 exhausted all cases without a match","stack":"Error: intensamente.rami [Variable]{aa099b} at intensamente.wlk:105 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:02:03.594Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ramiro [Variable]{bee4b4} at intensamente.wlk:105 exhausted all cases without a match intensamente.ramiro [Variable]{bee4b4} at intensamente.wlk:105 exhausted all cases without a match","stack":"Error: intensamente.ramiro [Variable]{bee4b4} at intensamente.wlk:105 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:02:03.887Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":148,"timestamp":"2024-11-22T14:02:04.036Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ramiro [Variable]{9abbd5} at intensamente.wlk:105 exhausted all cases without a match intensamente.ramiro [Variable]{9abbd5} at intensamente.wlk:105 exhausted all cases without a match","stack":"Error: intensamente.ramiro [Variable]{9abbd5} at intensamente.wlk:105 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:02:04.832Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:02:05.009Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:05.010Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:02:06.028Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:02:06.292Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:02:06.842Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:02:10.125Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:02:10.229Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:02:11.013Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:02:11.389Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:02:20.391Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:02:20.500Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T14:02:22.255Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:02:22.363Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:22.610Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":256,"timestamp":"2024-11-22T14:02:22.959Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":192,"timestamp":"2024-11-22T14:02:23.152Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:02:23.349Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T14:02:23.626Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":149,"timestamp":"2024-11-22T14:02:23.777Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.em [Variable]{149b9f} at intensamente.wlk:104 exhausted all cases without a match intensamente.em [Variable]{149b9f} at intensamente.wlk:104 exhausted all cases without a match","stack":"Error: intensamente.em [Variable]{149b9f} at intensamente.wlk:104 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:02:23.799Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":132,"timestamp":"2024-11-22T14:02:23.932Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":139,"timestamp":"2024-11-22T14:02:24.072Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":175,"timestamp":"2024-11-22T14:02:24.248Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:02:24.639Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emo [Variable]{57c5f0} at intensamente.wlk:104 exhausted all cases without a match intensamente.emo [Variable]{57c5f0} at intensamente.wlk:104 exhausted all cases without a match","stack":"Error: intensamente.emo [Variable]{57c5f0} at intensamente.wlk:104 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:02:24.823Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T14:02:24.939Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:02:25.044Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:02:25.153Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:02:25.342Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion [Variable]{fbaf9c} at intensamente.wlk:104 exhausted all cases without a match intensamente.emocion [Variable]{fbaf9c} at intensamente.wlk:104 exhausted all cases without a match","stack":"Error: intensamente.emocion [Variable]{fbaf9c} at intensamente.wlk:104 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:02:25.706Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:02:26.360Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":152,"timestamp":"2024-11-22T14:02:26.971Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T14:02:27.275Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion3 [Variable]{e2f2be} at intensamente.wlk:104 exhausted all cases without a match intensamente.emocion3 [Variable]{e2f2be} at intensamente.wlk:104 exhausted all cases without a match","stack":"Error: intensamente.emocion3 [Variable]{e2f2be} at intensamente.wlk:104 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:02:27.388Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":223,"timestamp":"2024-11-22T14:02:29.437Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:02:29.710Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:02:30.334Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:02:30.453Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:30.453Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:02:30.634Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:02:32.859Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:02:32.984Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:02:32.985Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T14:02:33.503Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:02:34.373Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:02:35.043Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":225,"timestamp":"2024-11-22T14:02:36.123Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:02:36.229Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":256,"timestamp":"2024-11-22T14:02:37.456Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:02:37.663Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:02:37.902Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T14:02:38.127Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:02:38.430Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T14:02:38.827Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:02:38.932Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:02:39.423Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T14:02:39.547Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T14:02:39.667Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:02:39.782Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T14:02:39.914Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:02:40.301Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:02:41.093Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T14:02:42.284Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T14:02:42.843Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:02:42.961Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:03:50.086Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:03:50.301Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Emocion.p [Field]{323bb0} at intensamente.wlk:31 exhausted all cases without a match intensamente.Emocion.p [Field]{323bb0} at intensamente.wlk:31 exhausted all cases without a match","stack":"Error: intensamente.Emocion.p [Field]{323bb0} at intensamente.wlk:31 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:03:50.327Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T14:03:50.441Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:50.442Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:50.523Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:50.608Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:03:50.809Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:50.899Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:50.981Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:51.054Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T14:03:51.165Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:51.345Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:03:51.511Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"6af441bd-4ddd-4aa3-aca8-0d0444ded94d","imports":[],"members":[{"id":"0b58c163-4cae-4cfe-b219-39db423d195c","members":[{"id":"f163f196-e18e-47bc-ac98-5a84ef963a0e","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"eb78f792-50a3-4513-9ee1-0fb0ad5147c5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"afe92997-7a70-401a-bfa0-92310cf871ab","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"c1f1700c-b1f5-4b16-b180-abc3463fcc67","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"e7d5d35e-e103-4184-bc42-a60a51178cd2","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"802c02f7-c1a7-4df7-b96a-fc8fd3d423b3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8361e68e-0ee7-41d2-83e8-ec4d8e4b1717","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1addf56f-4126-40f8-97f7-144e7e6d3ecf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"30d1b820-c4bb-4b1c-af40-e946ddfbdf26","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"97124c09-5d79-463f-ad23-f47f25290c85","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"f32c5719-3894-42e1-ab4e-47da403a474c","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"527bfd70-d61f-4a48-ae4c-8730f9bc2392","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"db9fe2b5-77d2-48fd-b214-5971c78c0c34","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5b12edc8-fb48-4790-9d27-83309d22eb9e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b55958a1-cad2-4d4a-94c8-3f6d8277d0e8","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"d0040795-1292-475e-b882-baf16b3ef543","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"2842b8ae-46c6-4ee4-82cb-b2026468d542","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"f6a102aa-3535-4e04-b75c-f8a68a65d02b","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"81cae0a1-7aed-465d-8193-5eb8a88b0a30","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"cda343b0-301f-4c7e-9b36-0593241e5ed6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"595a6721-df0c-4722-a676-4d3306c99f84","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"41b254a5-f1a6-431c-8f3f-3026c523a82d","members":[{"body":{"id":"909ecb30-5591-4673-ac43-e622a3c939b7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a63b0a46-4dc0-4b7b-98d2-76e6b0cd0bea","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"2b09f782-f9f1-4b92-9bb9-bb30d388a798","message":"puedeLiberarse","metadata":[],"receiver":{"id":"fc5c74d5-9f92-4077-b162-92035ea69a05","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"9e606b20-bab2-4a74-9e85-4ffae1dbc253","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"85f18c0e-4cab-4ea1-bca7-df921bad5fc7","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"c0b51452-624e-4143-ae99-863811141c78","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"8c22c620-7add-41bc-80d0-53b12ec04f67","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"deb3b90c-e08e-46bb-a9a7-aca9daeb967e","metadata":[],"reference":{"id":"03426f5a-ddf0-4220-a331-05d087ea7c69","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"c681d168-ed4c-4a4f-8e17-0b25d1874378","message":"all","metadata":[{"args":{"position":"end","text":"//4 "},"name":"comment"}],"receiver":{"id":"50d8873a-6c50-4292-89e7-cd196740fd4c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":28,"line":13,"offset":218}}},"id":"11395280-3ca2-4072-9429-de21055772f6","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"28ad6eaf-7b0c-4a67-a1ea-f4625f0b6ac1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8e38f20c-2a2f-4671-8e12-75caa15ac9a4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":5,"line":17,"offset":301}},"value":{"args":[{"id":"0d48532d-0823-4045-ba0f-4677e7aa2f75","members":[{"body":{"id":"f6398577-8fa8-4d4a-a920-1e5a26afe3ce","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"59c48a4d-8fb6-4517-93e2-a4179af92403","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"0f5bcea2-a10c-4277-887b-577640cbbe61","message":"liberar","metadata":[],"receiver":{"id":"3b786577-1d8f-4dce-bab0-2a995cbd1bff","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":17,"offset":335},"start":{"column":38,"line":17,"offset":334}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":17,"offset":345},"start":{"column":38,"line":17,"offset":334}}}}]},"id":"4fadba0a-8f23-4e6e-b515-8210e3f9e4dc","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"a80b84a5-33dc-4abd-ab7f-32a11fb8b30b","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":17,"offset":330},"start":{"column":33,"line":17,"offset":329}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"9e4d539e-5483-4859-aecc-ddcf18de2b5c","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"85812e62-de67-4e25-9e40-f5dcd833199d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":17,"offset":347},"start":{"column":31,"line":17,"offset":327}},"supertypes":[{"args":[],"id":"d1428144-7038-4b7a-8436-dbc18595a01f","metadata":[],"reference":{"id":"75b2fbd5-22a9-41cd-84e7-b1414ac7a119","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"bf66db74-5a68-472e-a2c7-1f336574991b","message":"map","metadata":[],"receiver":{"id":"749463c1-7d49-438a-905d-00f6cbf0c134","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":17,"offset":322},"start":{"column":17,"line":17,"offset":313}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":17,"line":17,"offset":313}}},"variable":{"id":"11919e59-ee41-4ad4-8501-0612d768ae39","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":17,"offset":310},"start":{"column":5,"line":17,"offset":301}}}}],"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":24,"line":16,"offset":294}}},"id":"785e0642-83b7-4335-b432-78dfa0fc8625","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":3,"line":16,"offset":273}}}],"metadata":[{"args":{"position":"end","text":"//6"},"name":"comment"}],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":19,"offset":356},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"ca76faf2-a235-42d7-aea5-697be1644d65","members":[{"id":"b8901298-dc4a-407b-85ed-0e5e2baab2d1","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":5,"line":23,"offset":384}},"value":{"id":"9ce9a15e-b55e-4d88-ae58-96448b4fe8a6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":23,"line":23,"offset":402}},"value":[{"id":"cf9c7437-e785-4eee-8220-d66c709773e2","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"9b4f5ed7-e828-448b-828c-b7fa35c5f463","metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":23,"offset":408},"start":{"column":24,"line":23,"offset":403}}},{"id":"ebb55bb7-804f-4b40-bc95-389064e3ed00","metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":23,"offset":415},"start":{"column":30,"line":23,"offset":409}}}]]}},{"body":{"id":"9ac4bd3b-a832-4e50-87df-8f5708d8b2ab","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"671488da-f22e-4e64-b812-1fd7f159837f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"cfa854a1-cc5b-4f7d-ab70-93a2ca45be48","members":[{"body":{"id":"a04415ae-b97d-4615-ad92-82e6e937ebb7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a9001c01-2cc5-4a8c-beb3-c89a5226b242","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3971e88c-dd5d-4ece-9c9a-6c10604af8ca","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":77,"line":25,"offset":496},"start":{"column":71,"line":25,"offset":490}}}],"id":"e01c2604-988a-410f-80d9-11cb47a1d4d0","message":"hacerEvento","metadata":[],"receiver":{"id":"238ada75-5cc6-4a60-b1e2-4d078ba3fb77","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":25,"offset":477},"start":{"column":57,"line":25,"offset":476}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":78,"line":25,"offset":497},"start":{"column":57,"line":25,"offset":476}}}}]},"id":"99807d10-83a9-4ec7-8ab7-8e86195f1de7","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"7bfbe764-a045-46bc-a21e-9efef48883e4","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":25,"offset":474},"start":{"column":54,"line":25,"offset":473}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"7d768633-53c3-41c6-9078-d3b402b36a9f","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"3fda406d-a1b5-46a5-afb5-eb0825661418","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.hacerEvento(evento)}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":79,"line":25,"offset":498},"start":{"column":53,"line":25,"offset":472}},"supertypes":[{"args":[],"id":"46a96c23-6892-4b82-bd5d-2a983b1026da","metadata":[],"reference":{"id":"601527ae-8e25-492b-9a83-4484b0127ccf","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"236b6df7-ec81-4078-815a-c9601ed32cd3","message":"forEach","metadata":[],"receiver":{"id":"e55a88c6-0125-4e81-97fc-dca7b8fdc2ac","metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":25,"offset":463},"start":{"column":33,"line":25,"offset":452}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}}}],"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}},"id":"eea4e7b8-b9bd-4a26-a524-eb267381bb01","isOverride":false,"metadata":[],"name":"vivirEvento","parameters":[{"id":"bf7a0e8f-acf0-4ca9-9e4d-35f414a8360e","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":25,"offset":449},"start":{"column":24,"line":25,"offset":443}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":5,"line":25,"offset":424}}}],"metadata":[],"name":"grupo","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":502},"start":{"column":1,"line":22,"offset":365}},"supertypes":[]},{"id":"19823d72-9200-4bff-af9f-9aded0b14ded","members":[{"id":"1d3a693e-48ed-4124-b4c3-4c6256a39fd6","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":5,"line":29,"offset":527}},"value":{"id":"1a983ae6-1b8d-468f-af72-889dfab41df9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":31,"line":29,"offset":553}},"value":100}},{"id":"03c63fba-e676-40d4-a698-2983601d775a","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":5,"line":30,"offset":562}},"value":{"id":"fe4049e0-2bed-4d4f-a37d-15496ddc6727","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":36,"line":30,"offset":593}},"value":0}},{"id":"16e77638-1ab2-442f-b7e6-393d012dee06","isConstant":true,"isProperty":true,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":5,"line":31,"offset":600}},"value":{"id":"35308423-b705-4735-90ac-9faae15cf876","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":41,"line":31,"offset":636}},"value":5}},{"body":{"id":"b722d1e1-580e-4164-9174-55474b0c0ec6","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9c089c7d-fc82-40f0-9141-e635747d3a75","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"3ac3bb6c-4ef5-4ca2-97c7-721edd259995","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}},"value":true}}],"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}}},"id":"994668b7-a2e3-4c2b-a245-6becce98afc5","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":3,"line":34,"offset":704}}},{"body":{"id":"d4e16b10-9f34-43d0-831a-edce2c885d6c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d87267a2-cb2e-40a0-bf3d-4742f3c0e46d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c4a24707-9cd9-4a16-8a0c-ba271e7aa5f3","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}}}],"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}},"id":"0d24f488-b33c-450f-aeed-b940f92bf5ea","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[{"id":"e6f76128-b30e-42e3-baad-2bb3caa5b25b","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":36,"offset":773},"start":{"column":31,"line":36,"offset":768}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":5,"line":36,"offset":742}}},{"body":{"id":"f7d9c651-13ee-4f0d-bbb0-ae4dfc9d385b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"259b6ad8-516b-4cb1-a3ea-d6b79bebac54","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":5,"line":39,"offset":818}},"value":{"args":[],"id":"2c51ce8a-6daf-4313-9326-f353ce6939ca","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"6a8da8b7-2940-4641-a7a7-7c9e86ec1365","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":24,"line":39,"offset":837}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":22,"line":39,"offset":835}}},"variable":{"id":"290cc117-4a06-4872-9f5e-5a994069caec","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":39,"offset":833},"start":{"column":5,"line":39,"offset":818}}}},{"condition":{"args":[],"id":"2e305065-1270-47c2-99ac-4176f3af3ae2","message":"puedeLiberarse","metadata":[],"receiver":{"id":"ca25ff74-00eb-4912-a4be-589726da1f3d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":40,"offset":851},"start":{"column":8,"line":40,"offset":847}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":868},"start":{"column":8,"line":40,"offset":847}}},"elseBody":{"id":"98fe09d3-228e-4d07-8e66-c414770d9b6d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"0c1f2777-6610-4cae-8990-753e763d25cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":5,"line":40,"offset":844}},"thenBody":{"id":"ec4a7804-c9a3-4c3c-b207-55cefcf8644f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"504ee608-edf9-4284-8773-120b5ae485ad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":9,"line":41,"offset":880}},"value":{"args":[{"args":[],"id":"8c601e6f-bbd3-45e6-b184-68a048e1c37b","message":"impacto","metadata":[],"receiver":{"id":"2e51dc13-b447-49d5-872f-732f0063e631","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":41,"offset":900},"start":{"column":23,"line":41,"offset":894}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":23,"line":41,"offset":894}}}],"id":"767fa200-0ada-412d-bbaa-f3c8648cbc3a","message":"-","metadata":[],"receiver":{"id":"07c8bc77-56ae-4b92-8993-9e29816357a6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"106706e8-2e81-4122-a656-dabb5623ab11","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}}}],"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":30,"line":40,"offset":869}}}}],"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":26,"line":38,"offset":811}}},"id":"ff462f6e-28ac-4d8a-91ae-f314f6499ad7","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"deb69e23-71e3-4d1b-9ee6-ec7006e10190","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":809},"start":{"column":18,"line":38,"offset":803}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":3,"line":38,"offset":788}}},{"body":{"id":"da060096-7294-4a1b-8f73-872bd9341b12","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e32e885f-8efc-43b2-a549-78813375a8b2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"309b1bbe-60c5-4c44-af7b-bde91b0b7027","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":45,"line":45,"offset":970}}}],"id":"3bdc9d2c-07fa-432b-95aa-a5ae53af9e70","message":">","metadata":[],"receiver":{"id":"0276fa5a-1490-4bc3-a4ef-2628f733ebb3","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":45,"offset":969},"start":{"column":34,"line":45,"offset":959}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}}}],"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}},"id":"d5a307b4-9858-45d1-9165-3815cce9a48b","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":5,"line":45,"offset":930}}},{"body":{"id":"f9df4c55-607c-4711-a8f9-a1b847011225","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cd1fda41-ff69-4a5d-bc1a-2da111d6b7c7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"0fada883-bfa6-481a-851b-f8b0a9a016b2","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"4d5c374d-c49d-4b22-99c6-c1e78fd12849","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"24f34949-e45f-4223-9233-58fde478051d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"be523090-84e0-4448-918b-a7776eb093fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"cc39629c-0a8c-4734-be96-9866fe6750e5","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"41542e7c-f738-4672-8e71-62ddb7ef8078","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"f0c09b62-5a82-40d0-940a-fcf6c91ad9cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"552f05cb-88a7-48a9-9871-9b7b0deb9924","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"d4861a70-9cc1-4c57-9299-cd97d6391c9f","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"58edf15e-e427-46ff-b166-d61ed6e5fd02","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"5bf7cb4c-f7f5-40fe-8fec-67058ca8cb58","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"29f0ba53-2b5e-4ff3-996e-109dd54b8088","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"0822542c-c2e3-4414-a41c-14e270e51f44","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"bd512d7e-f07a-46bf-b984-38a26965d2f0","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"c4852f5f-fbe2-4809-97da-89009613e8ab","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"0b7e2347-2acd-4e5d-870a-1bb125c773d7","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"e95e1e94-f4fe-4257-b78e-e51914299608","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cfa1b26b-8531-4f5e-8052-93487c83d897","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"7ddbe224-b532-4c30-980d-adad6dbb3177","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"b2e2ceaa-7104-4d08-9fb4-c3cf2a3e6ec8","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"eb798d68-f013-4439-b098-d032dca9cc21","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"798818c8-89a0-4405-8f1d-d8da88f860a1","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":47,"offset":993},"start":{"column":1,"line":27,"offset":504}},"supertypes":[]},{"id":"26342cfe-bd8d-4d23-b9c1-46728a79b90c","members":[{"id":"d2daa9d3-2a40-4d20-b51a-31923b9c4222","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":5,"line":50,"offset":1032}},"value":{"id":"950f74a0-750e-4d25-a34d-a35a8e219af5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":22,"line":50,"offset":1049}},"value":[{"id":"e0eaac47-1b8d-4160-bd67-745d7976dcd8","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"0393eecd-3e7d-4875-9710-67bc08ca576f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0ea75245-f666-495e-ab3e-4c29ff6fcd58","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"e78d5c01-2249-4edc-8044-05514e620eaa","message":"intensidadElevada","metadata":[],"receiver":{"id":"a6351faf-41f0-4faf-b67c-68b6ebeba0af","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":52,"offset":1125},"start":{"column":67,"line":52,"offset":1121}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":67,"line":52,"offset":1121}}}],"id":"14febdd5-4793-4806-8490-640ec6bc30e4","message":"and","metadata":[],"receiver":{"args":[],"id":"f7ba2f6c-25fa-4f61-bc86-eec278e5fe24","message":"tienePalabrota7","metadata":[],"receiver":{"id":"3e968659-b2b3-4fc4-b3f3-77b3cb67a5e3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":52,"offset":1098},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":52,"offset":1116},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}}}],"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}},"id":"8cdf89bf-043d-4ac9-a4b6-8b14dde23235","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":5,"line":52,"offset":1059}}},{"body":{"id":"a8daebe6-4055-4a40-bfcc-c84bc8da2295","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3ae9ab0a-200b-4d38-b04c-63a5f310abf4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f9f63199-ecdc-4f5a-ae29-1ec9915d29e6","members":[{"body":{"id":"70c0a365-30a8-4882-bdbe-1e21a97aada5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ecb14ca0-b4c0-4512-af5a-0abadc907000","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"c998f443-fd8e-400b-9163-3e64cffa8ff0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":59,"line":53,"offset":1205}},"value":7}],"id":"5472973e-68c1-4a65-8614-db1fc06ab284","message":">","metadata":[],"receiver":{"args":[],"id":"52a8ba68-0768-4d5f-8df6-c0b0655a8e68","message":"size","metadata":[],"receiver":{"id":"cf829119-cc07-406a-896e-7de446342ad3","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":53,"offset":1197},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":53,"offset":1204},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":50,"line":53,"offset":1196}}}}]},"id":"5c92cc94-20c9-4205-814c-f16934a793b1","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"e378613a-90b8-40ab-8219-80cbce26d0c2","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":53,"offset":1194},"start":{"column":47,"line":53,"offset":1193}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"1dbc6f7a-ea90-4fe8-9471-07b426bdf70d","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"60f3e7f9-a2ca-48b8-9659-94b46606489c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":46,"line":53,"offset":1192}},"supertypes":[{"args":[],"id":"bb6f3e96-ccd9-4f45-a4fa-3931c8a2935a","metadata":[],"reference":{"id":"6dbe6bed-7bd3-4da7-9c02-fc30e67e6678","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"7306cdbf-3827-4d5a-b2b9-1b7b8b98e3b2","message":"any","metadata":[],"receiver":{"id":"9e89dd4c-332a-4426-898c-9074d95f78dc","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":53,"offset":1188},"start":{"column":32,"line":53,"offset":1178}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}}}],"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}},"id":"0ec99b78-ae4e-4d18-ba47-e852ba92dd60","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":5,"line":53,"offset":1151}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":55,"offset":1212},"start":{"column":1,"line":49,"offset":997}},"supertypes":[{"args":[],"id":"f77d20e1-7d00-425f-96c7-c550d78553b4","metadata":[],"reference":{"id":"20546747-7b83-4248-a62d-6469f1931c9d","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}}]},{"id":"f5c2fc22-b890-47fc-a3c8-ad8ecfc093a1","members":[{"body":{"id":"22589052-5fae-4927-87b7-6518e676618f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d3fa50b9-a035-43cf-9ad2-dff018d124fe","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":9,"line":59,"offset":1297}},"value":{"args":[],"id":"9cea3b9f-156a-4a51-b818-07492b49b712","message":"abs","metadata":[],"receiver":{"id":"b254d28e-949f-4242-b8f5-2023c79fd2be","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":59,"offset":1315},"start":{"column":22,"line":59,"offset":1310}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":22,"line":59,"offset":1310}}},"variable":{"id":"cbfbed12-91d1-4a1c-ba27-e99520d103d1","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":59,"offset":1307},"start":{"column":9,"line":59,"offset":1297}}}}],"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":38,"line":58,"offset":1286}}},"id":"babb9e2d-d1b6-49d1-88a7-63f45bd64610","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"730acf76-b29d-4d74-a3e5-2d9074572b85","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":58,"offset":1285},"start":{"column":32,"line":58,"offset":1280}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":5,"line":58,"offset":1253}}},{"body":{"id":"e79384a5-2531-481a-9142-e66fb0ada5f9","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b360bb82-d2c9-4579-88b3-2c6976027183","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"42f7bbbc-8cff-4285-a30c-0e6ed8d0c339","message":"eventosPar","metadata":[],"receiver":{"id":"bc461052-bb90-4097-9492-60090d3c45cd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":61,"offset":1401},"start":{"column":68,"line":61,"offset":1397}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":68,"line":61,"offset":1397}}}],"id":"b28544ca-da3b-4785-890f-effbe29caadd","message":"&&","metadata":[],"receiver":{"args":[],"id":"8506b45a-88f1-4168-bf0a-95ae39c620df","message":"intensidadElevada","metadata":[],"receiver":{"id":"356eb160-2995-41ed-8217-ab5f8c34f2d3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":61,"offset":1373},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":61,"offset":1393},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}}}],"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}},"id":"13a68080-7da1-47a2-9719-336731c32915","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":5,"line":61,"offset":1334}}},{"body":{"id":"d017b106-a947-4f17-b095-9eee6e9e8a32","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"266a92ea-be2c-4934-a5dd-867826b021d4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"0fbaffc0-087f-4a1a-88a5-2cb6c1d5dd9b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":48,"line":63,"offset":1465}},"value":0}],"id":"75dc9f8e-6fe0-42e4-ada3-a11d1e18a127","message":"==","metadata":[],"receiver":{"args":[{"id":"82fe879a-01aa-4e1c-aead-445febc1bb33","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":43,"line":63,"offset":1460}},"value":2}],"id":"65453f77-6f6a-44b6-ba79-defc97d7aca8","message":"%","metadata":[],"receiver":{"id":"a3a251f2-0e2a-45c0-b6fb-d5e0a24c65c2","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":63,"offset":1459},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}}}],"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}},"id":"7e98f512-3037-4bc4-b785-4a1a2cf1adc3","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":5,"line":63,"offset":1422}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":65,"offset":1475},"start":{"column":1,"line":57,"offset":1216}},"supertypes":[{"args":[],"id":"7d249792-b7fc-4101-a95e-341a8a93a12d","metadata":[],"reference":{"id":"c8562d72-0c21-440d-97bf-d093a395d759","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}}]},{"id":"8f3cf54a-3076-48e2-b50e-35b06bdfe6af","members":[{"id":"62243904-af67-4405-a286-bb5cdbdb1589","isConstant":true,"isProperty":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":68,"offset":1528},"start":{"column":5,"line":68,"offset":1517}},"value":{"id":"8d85b595-5a1e-445a-9fb4-a4a7d1f5bb0b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"07897b5a-9bc7-43b8-b9e3-1018de5d29bf","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9056a1c9-df3d-4b96-80bc-ebb5f4eea116","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"73e1b5ce-08fc-43d9-a36f-4a0abc87e571","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}}}],"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}},"id":"32980be9-e0ee-41a7-8608-20a43c4b6670","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":5,"line":69,"offset":1534}}},{"id":"c52f29a4-5f99-4e05-9db0-569fbc01ad34","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":5,"line":71,"offset":1582}},"value":{"id":"057bea93-c9c0-406a-93fc-3af1dd519719","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":26,"line":71,"offset":1603}},"value":"melancolia"}},{"body":{"id":"20f23c5d-7a4d-450b-8bd7-5ec163aa6cb5","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8299d09c-b484-4b81-bba3-e684f2afb92d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"dc38f6da-b7bf-469a-8620-65465eeeb2b2","message":"intensidadElevada","metadata":[],"receiver":{"id":"88b95f57-5e67-4939-aa9d-d171e762f556","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":69,"line":72,"offset":1685},"start":{"column":65,"line":72,"offset":1681}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":65,"line":72,"offset":1681}}}],"id":"644f2868-86e3-49e1-be8e-1e597b6c3faf","message":"&&","metadata":[],"receiver":{"args":[{"id":"331e5911-8d9e-4a98-80ee-a922e24987f1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":49,"line":72,"offset":1665}},"value":"melancolia"}],"id":"05c7ee80-31e7-45f8-8dba-541afb171b34","message":"!=","metadata":[],"receiver":{"id":"19a8fb9f-7a11-4c81-ad8d-5dd0e3d1a1ea","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":72,"offset":1661},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}}}],"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}},"id":"8f8d0f3d-30cf-4261-98d8-0df34efa67d7","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":5,"line":72,"offset":1621}}},{"body":{"id":"bf54b90c-2dc2-4107-bcbf-00d7b9dc47f5","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"715b1bd5-3414-4c48-83eb-9380a4916648","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":74,"offset":1765},"start":{"column":15,"line":74,"offset":1759}}}],"id":"080eedb3-51c4-454e-b25b-7e6ab8a7fe2b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":74,"offset":1766},"start":{"column":9,"line":74,"offset":1753}}},{"id":"d0324989-5865-4341-9d86-fccb8c621a07","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":9,"line":75,"offset":1776}},"value":{"args":[],"id":"c46d811c-d691-4ea0-bf96-1a72f40cd2e9","message":"descripcion","metadata":[],"receiver":{"id":"f16fd7aa-396b-422c-90a9-229a222d4318","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":75,"offset":1790},"start":{"column":17,"line":75,"offset":1784}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":17,"line":75,"offset":1784}}},"variable":{"id":"a129e486-7740-4e6c-a7c9-f3a4d3bfffba","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":75,"offset":1781},"start":{"column":9,"line":75,"offset":1776}}}}],"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":36,"line":73,"offset":1742}}},"id":"f4d4bfab-dfea-42d5-93e7-ab9d845dcb13","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"716a934a-08ed-4e36-9157-fff6a03a2e39","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":73,"offset":1741},"start":{"column":29,"line":73,"offset":1735}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":5,"line":73,"offset":1711}}},{"body":{"id":"a294cc56-8707-41a7-8379-83a7f40c267c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e271563c-040d-4eae-947d-8c878779a79a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"c7288ccd-d640-4d5a-b7c8-9b315cdbb551","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"d622d885-3ac7-4268-acc0-420b2462f183","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"a25f1b79-1022-4653-a7cb-26953d854132","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8e28d8ff-94c7-40ba-8654-0e648cc63509","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"96100d69-d38c-4e62-b0b4-006b755a5928","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"c41a1b36-afac-473d-9856-5c72a72865c0","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"71d0c080-affa-4a12-aabc-8fd355acbfc8","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"2f6958cb-4585-4857-84d6-5a465290606f","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":77,"offset":1814},"start":{"column":1,"line":67,"offset":1479}},"supertypes":[{"args":[],"id":"81b010cd-3a89-4d38-8844-bd1c5aa07f87","metadata":[],"reference":{"id":"59f66017-615e-4775-8ce0-08589b51706a","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}}]},{"id":"7e88ca04-f8f7-4f68-93d6-3b5a964d9192","members":[{"body":{"id":"44b9dc92-cf0d-411f-8fe3-70684d50357f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6338ecfe-e5a8-483f-9918-0f133ff028ac","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"d500b407-d964-453e-9e2f-512f578d299d","message":"intensidadElevada","metadata":[],"receiver":{"id":"293cc968-acf5-43f8-a4ad-b0683e42b2ec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":76,"line":80,"offset":1934},"start":{"column":72,"line":80,"offset":1930}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":72,"line":80,"offset":1930}}}],"id":"fe849b3a-4b41-40c6-b8a5-8a3e189a68ad","message":"&&","metadata":[],"receiver":{"args":[{"id":"5570cfef-64db-4662-bff4-ce8cd001b4ce","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":58,"line":80,"offset":1916}}}],"id":"0b715063-e0e7-4cfd-9a4a-ef597b34a14d","message":">","metadata":[],"receiver":{"id":"11c5aad8-9c6d-443e-a389-682ab8ad5b34","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":80,"offset":1913},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}}}],"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}},"id":"2ac7d1c8-09e0-4315-80ea-7c09bf20340a","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":5,"line":80,"offset":1863}}}],"metadata":[{"args":{"position":"end","text":"//Se libera si el impacto de la última emocion fue mayor al criterio de intensidad"},"name":"comment"}],"name":"DesagradoYtemor","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":81,"offset":1957},"start":{"column":1,"line":79,"offset":1818}},"supertypes":[{"args":[],"id":"922a0614-d120-4966-94ad-64c5f702950e","metadata":[],"reference":{"id":"29dbdfb2-643b-4c2a-9cb9-f62677e9755a","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}}]},{"id":"1df9d655-aa37-44d3-8811-e707c16b871b","members":[{"id":"00c1105c-698a-4575-b15b-23a21eda695d","isConstant":false,"isProperty":true,"metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":5,"line":85,"offset":2083}},"value":{"id":"f8cd8344-0584-4740-92d5-60b82051df67","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":29,"line":85,"offset":2107}},"value":10}},{"body":{"id":"1d58858b-08fa-4e1b-962d-517fb1b2bae3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"35cfa9ed-159d-46b7-b433-3301d96dba12","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"7bf05f06-58b6-42e0-96eb-608f2938591b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}},"value":100}}],"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}}},"id":"563c33e9-c78f-4495-8065-8a9405a924c8","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":5,"line":86,"offset":2115}}},{"body":{"id":"efb7d693-ec2a-4eb8-ba79-be308d44ce1a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e5b0a514-5614-4536-be4d-7ded5949ba5b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f06ba616-e155-40c8-b5e6-73d852caa396","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":52,"line":87,"offset":2192}}}],"id":"61edcedb-14ef-4585-8d0f-a00bd0a182cf","message":">","metadata":[],"receiver":{"id":"adc964ac-b978-444d-89f7-e4e2319d0db5","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":87,"offset":2189},"start":{"column":41,"line":87,"offset":2181}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}}}],"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}},"id":"4c36135e-dfda-4688-94bb-281ab33fdd9a","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":5,"line":87,"offset":2145}}},{"body":{"id":"6e4959a7-957d-4e03-bb9d-20eba9b16f5f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"92dc0711-e79a-4fa3-a1fd-947525b14e26","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":89,"offset":2270},"start":{"column":15,"line":89,"offset":2264}}}],"id":"7da20438-545d-497f-b0b4-e098e8895769","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":89,"offset":2271},"start":{"column":9,"line":89,"offset":2258}}},{"id":"d81c8eb5-dcf3-4f6d-8e1c-d19d9e25fd86","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":9,"line":90,"offset":2281}},"value":{"args":[],"id":"79d9cc71-2df9-4140-9c10-d3cb6da7c3cf","message":"impacto","metadata":[],"receiver":{"id":"4d8743a4-c061-4f73-acea-f47dfa59b861","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":90,"offset":2298},"start":{"column":20,"line":90,"offset":2292}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":20,"line":90,"offset":2292}}},"variable":{"id":"7772cbc5-c9ff-425b-98bc-d1a92a8a05f1","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":90,"offset":2289},"start":{"column":9,"line":90,"offset":2281}}}}],"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":36,"line":88,"offset":2247}}},"id":"b5b096fc-dd76-453a-bc7a-d58dbbe348e0","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"daece0a4-c456-4a19-aefc-0d78484da8a0","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":88,"offset":2246},"start":{"column":29,"line":88,"offset":2240}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":5,"line":88,"offset":2216}}},{"body":{"id":"9541146e-f988-4ac8-bd2e-90cfa105e0f9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"41049156-bbe9-4db7-a3d1-d19cc0340d56","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"fde3f62c-20fe-4ee5-a078-9c60d25df987","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"06ec7605-f273-4c05-97a4-b75ba263eda3","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"13b120d9-959b-4aba-b18d-58c25e060cff","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"9a0ef653-faff-47bf-ba9c-65dd77ba8df6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"5fd41526-74d7-427e-a5f2-f0947590cccd","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"5062ab0e-3ac5-45f2-9231-eda494875a29","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"5e978048-0c26-4b9b-9ed1-074c5023dde3","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[{"id":"0bc03918-3cd4-485f-bfe9-ac5ad144147d","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Especial","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":92,"offset":2318},"start":{"column":1,"line":84,"offset":2045}},"supertypes":[{"args":[],"id":"528cffba-f7ae-4c1c-9305-8dc95b780350","metadata":[],"reference":{"id":"0a55a78d-75c1-4f03-95e7-8389de880feb","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}}]},{"id":"15f99d12-a1a4-44df-85c5-0532a3cb01c6","members":[{"id":"9154c656-10de-45aa-a8ed-6d013b54204d","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":95,"offset":2363},"start":{"column":5,"line":95,"offset":2341}},"value":{"id":"4a90b1a7-8b74-4e76-a16c-8052e44d182a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"9e25b83d-eaa4-40b5-ba65-dcf6c9601517","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":96,"offset":2386},"start":{"column":5,"line":96,"offset":2369}},"value":{"id":"ee7238db-f134-4cc0-8a6b-97a3cc5315c5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"04038be2-329d-4199-9867-63e5cf146a18","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"eb4fc87a-626a-48fd-a3f6-f04eecdf011c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"93c2dc11-df79-494d-b801-90cfed98d4d9","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}}}],"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}},"id":"5182f8c2-efef-4fa9-906d-ce6d34fb342f","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":5,"line":98,"offset":2394}}},{"body":{"id":"d9b414cf-cc3b-4762-8c20-b9c91c9e2f93","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4aa0cc34-934b-4fd5-967f-242ddba1eafd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"964a1466-1116-40f1-b435-0aa7cba82e63","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2eaf369f-b0b8-4f95-a727-feddd591e0ad","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":99,"offset":2432},"start":{"column":1,"line":94,"offset":2322}},"supertypes":[]},{"id":"3c41b653-0c61-4230-a47f-3ecc59d2d8d0","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":1,"line":101,"offset":2436}},"value":{"args":[{"id":"b73fbae2-22d3-4a52-8c3a-6e906bf79f29","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":27,"line":101,"offset":2462}},"value":{"id":"a5fe67a9-a804-4bb5-bcd9-fee567325d53","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":35,"line":101,"offset":2470}},"value":10}},{"id":"2b072942-7517-4888-b079-8eba616bff63","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":39,"line":101,"offset":2474}},"value":{"id":"189dbf91-fbfc-4c3f-9583-ac6177553697","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":53,"line":101,"offset":2488}},"value":"FLOW"}}],"id":"3975ccf7-05d6-4d9f-8cf8-b9136ca76e74","instantiated":{"id":"aa924c17-03c0-40f6-be5c-cc781723c231","metadata":[],"name":"Evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":101,"offset":2461},"start":{"column":20,"line":101,"offset":2455}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":16,"line":101,"offset":2451}}}},{"id":"6dcc271e-f7bc-481f-9579-7b2a8ab8080f","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":102,"offset":2551},"start":{"column":1,"line":102,"offset":2497}},"value":{"args":[{"id":"131c532a-6e23-42af-a80c-8279401cfd91","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":102,"offset":2550},"start":{"column":28,"line":102,"offset":2524}},"value":{"id":"891a04db-a5af-4799-a829-8a86dfe6d647","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":54,"line":102,"offset":2550},"start":{"column":39,"line":102,"offset":2535}},"value":[{"id":"d79d556b-c83f-4529-83e5-3483184f24b7","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"30910721-b719-4196-83e7-57f6eb1a682a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":53,"line":102,"offset":2549},"start":{"column":40,"line":102,"offset":2536}},"value":"aaaaaaaaaaa"}]]}}],"id":"bbddb161-41f4-4dd2-a170-157e687a3890","instantiated":{"id":"344b8050-dad5-4788-9ab2-4860a95045ee","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":102,"offset":2523},"start":{"column":22,"line":102,"offset":2518}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":102,"offset":2551},"start":{"column":18,"line":102,"offset":2514}}}},{"id":"949812ca-1c4f-4cfc-ac3b-c429bd96ef8c","isConstant":true,"metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2595},"start":{"column":1,"line":103,"offset":2553}},"value":{"args":[{"id":"d4f1f969-4dc5-4fcf-b1bd-ae179ff833e4","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2594},"start":{"column":30,"line":103,"offset":2582}},"value":{"id":"3133d8fc-92a1-4738-abd5-2f35d351ed00","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2594},"start":{"column":41,"line":103,"offset":2593}},"value":1}}],"id":"9631dcc3-dfdc-4e3c-84b5-be2538bfb3f3","instantiated":{"id":"226c69e3-5cb6-41ee-9b72-f51c8585379e","metadata":[],"name":"Alegria","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":103,"offset":2581},"start":{"column":22,"line":103,"offset":2574}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2595},"start":{"column":18,"line":103,"offset":2570}}}},{"id":"765029fc-7c74-4f03-864d-b5c9df19479b","isConstant":true,"metadata":[],"name":"emocion3","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":104,"offset":2638},"start":{"column":1,"line":104,"offset":2597}},"value":{"args":[{"id":"1a81bc7d-44b9-4d03-96aa-5d306daa386e","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":104,"offset":2637},"start":{"column":28,"line":104,"offset":2624}},"value":{"id":"0e387ab4-d574-4454-8511-d5c873d1fed4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":104,"offset":2637},"start":{"column":39,"line":104,"offset":2635}},"value":[{"id":"23fce25e-9aa1-40bb-8728-dd4b4428d69c","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}}],"id":"8d5eaf81-c13a-46eb-9e02-bd3e554fbf70","instantiated":{"id":"07843f07-ac2f-4767-b8f9-dbacf9a01bd7","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":104,"offset":2623},"start":{"column":22,"line":104,"offset":2618}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":104,"offset":2638},"start":{"column":18,"line":104,"offset":2614}}}},{"id":"0e6c6383-42e6-4cab-975d-a7875373f7fe","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2705},"start":{"column":1,"line":105,"offset":2640}},"value":{"args":[{"id":"d9cc16d4-6cc4-453d-8187-4001af3a9568","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2673},"start":{"column":28,"line":105,"offset":2667}},"value":{"id":"95d20238-11c7-4716-9d98-44e165c64d49","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2673},"start":{"column":33,"line":105,"offset":2672}},"value":2}},{"id":"e7a78225-6c45-4381-90d2-ea739e25f7d0","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2704},"start":{"column":36,"line":105,"offset":2675}},"value":{"id":"c1d78ae4-83f8-4839-a736-2b27ccfdb4ec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2704},"start":{"column":46,"line":105,"offset":2685}},"value":[{"id":"e822eed4-251d-406f-b637-cd34b3a10afa","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"7a4c760e-c526-455f-8488-f0cfb4e8db31","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":105,"offset":2694},"start":{"column":47,"line":105,"offset":2686}}},{"id":"fe7da6c5-fe9b-429a-a8a8-b546a76ed805","metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":105,"offset":2703},"start":{"column":56,"line":105,"offset":2695}}}]]}}],"id":"58246ddf-1ef2-422d-be0e-c7e391218bd9","instantiated":{"id":"6429d573-91ad-400c-b1dc-88847d17507d","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":105,"offset":2665},"start":{"column":19,"line":105,"offset":2658}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2705},"start":{"column":15,"line":105,"offset":2654}}}},{"id":"c89c373b-da0c-4ef2-a38c-3497ba3d0fa7","isConstant":true,"metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2725},"start":{"column":1,"line":106,"offset":2707}},"value":{"id":"cd0acd21-8e6d-4343-87d6-5837c4a04b4d","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2725},"start":{"column":16,"line":106,"offset":2722}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":58,"line":106,"offset":2764},"start":{"column":20,"line":106,"offset":2726}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:04:32.874Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T14:04:40.628Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:04:40.745Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:04:42.368Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T14:04:42.503Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T14:04:42.647Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:04:42.942Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":160,"timestamp":"2024-11-22T14:04:43.401Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:04:43.507Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:04:43.616Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:04:43.725Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":136,"timestamp":"2024-11-22T14:04:44.052Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":170,"timestamp":"2024-11-22T14:04:45.073Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"763332a2-08ac-44dd-b6bc-09d7095a22f9","imports":[],"members":[{"id":"fda71cb1-93d1-4ef4-9a72-704d6be191c5","members":[{"id":"41e2ed92-576c-481e-8593-755a3804faf0","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"e8fdcaf3-5c8a-4ee7-a2ea-ccb11c5ae316","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8ed66fa9-95ed-40dd-a787-732b138cb954","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"1322b5e1-f21f-41fc-a9af-97f0c9a354e1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"98a678f0-f9c4-4717-a6f3-c0feeed6731b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"a72d0222-c7c2-4785-8c49-7c460df2ab4e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"350fab84-27b6-4daf-9f39-09651cc7c138","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"bc0acb44-d114-441b-b85c-49ab2570cd41","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"16043620-8074-4dcf-99cf-e45f34d746e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"f23515f2-f84f-45fe-84a8-5344eb148a72","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"c0a46a99-95bc-46b1-827c-cc5f42639fa9","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"6b35205b-fa03-4758-a2fc-cf1ee307bfaf","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"55db81b6-e17c-4f90-aad0-08ec983c2412","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bcc490e5-b175-44f4-9b21-a97a492a255e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"a0132561-34fa-49f4-aae0-a9313f925739","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"1a3f3dd8-1175-471f-a710-e1368cb13d46","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"ff9c85c3-4227-4b6a-b6c9-b240fe8c1163","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"3e7e1b9b-c1d2-46ab-981f-37014a48be72","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"b0244adb-5f61-4161-8f0f-2717bfda0703","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"59b84927-8b51-4c0f-a9d9-482e4ce89981","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bf01b49e-a4ec-48d8-9bd6-1630465a1245","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2f599ed9-299b-4009-bf61-07220cbc6aae","members":[{"body":{"id":"ddd7d89b-5404-4427-a3c8-8c0205a26673","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0ada8c1-ba93-4621-97a8-8b598e6b21e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"2e87545d-40d3-49b7-a150-018eea618bdb","message":"puedeLiberarse","metadata":[],"receiver":{"id":"fc5b03cd-a5de-48bf-91b5-88b7a3676047","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"76c2f8e4-6f84-4ded-9795-641832a6a386","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5fc8a798-0e8b-452f-81fc-0b157a05669e","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"e4f9d058-2e44-4721-b584-ff01b718fc21","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"3fba6925-bc0a-4f18-9473-bb7f42aae45d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"ea2809bf-dc9f-42d7-8050-737c930cd070","metadata":[],"reference":{"id":"69ecd452-8d47-414c-a340-38633095379f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"a3e174fb-f660-4632-893e-a308104052d5","message":"all","metadata":[{"args":{"position":"end","text":"//4 "},"name":"comment"}],"receiver":{"id":"1bcd7462-3c3f-485d-8b47-d3e985f7b8f8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":28,"line":13,"offset":218}}},"id":"6f24397e-ec06-4e28-bf5d-2899ea36870f","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"32500773-4ae8-4a7d-841c-0aa245529b13","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ab812634-e265-4935-a70e-81d63d251580","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":5,"line":17,"offset":301}},"value":{"args":[{"id":"d2786d39-b2df-4713-b34b-194afb369297","members":[{"body":{"id":"c380bc18-15c6-445c-9fed-40246f7e1913","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"69f914a8-21b8-4093-a00b-93ef51dd90b6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"a33c6b6f-a047-402f-9e0e-a3bb13129d31","message":"liberar","metadata":[],"receiver":{"id":"3d3016f6-66fd-4aeb-b6ca-8e5728259997","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":17,"offset":335},"start":{"column":38,"line":17,"offset":334}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":17,"offset":345},"start":{"column":38,"line":17,"offset":334}}}}]},"id":"3ba6000c-deb1-4cb8-acbc-776377e98c7d","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"3d02a406-5873-4ad3-8e2b-50a1e05fb806","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":17,"offset":330},"start":{"column":33,"line":17,"offset":329}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"dfa56203-45d3-42fb-9c6f-d37024578616","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"9f3d5800-622b-40db-895b-1a9f5073f915","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":17,"offset":347},"start":{"column":31,"line":17,"offset":327}},"supertypes":[{"args":[],"id":"343332c9-fdbd-414d-b4b4-b08fa189f620","metadata":[],"reference":{"id":"3c256569-2146-4268-aae1-022be842011e","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"4eff7ef9-0e88-43d8-abb9-bb3eb587c696","message":"map","metadata":[],"receiver":{"id":"6bad0775-9ea9-47c5-8ded-4c79177d192b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":17,"offset":322},"start":{"column":17,"line":17,"offset":313}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":17,"line":17,"offset":313}}},"variable":{"id":"53093391-78bc-44c2-88a3-be4da7bd290b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":17,"offset":310},"start":{"column":5,"line":17,"offset":301}}}}],"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":24,"line":16,"offset":294}}},"id":"e48f7e72-576e-4ede-997c-9e4c0b92961c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":3,"line":16,"offset":273}}}],"metadata":[{"args":{"position":"end","text":"//6"},"name":"comment"}],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":19,"offset":356},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"8ed3d2ba-de10-46a6-9be7-3652f0552ae8","members":[{"id":"eb3043c5-fdf7-4539-a709-3202b0408342","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":5,"line":23,"offset":384}},"value":{"id":"3f77a5a4-06b5-403b-9412-27eca634fc45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":23,"line":23,"offset":402}},"value":[{"id":"2ba632d0-f44b-4022-978c-c3806c5a2167","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e27f9163-7840-4f11-b4ce-935b91cf8526","metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":23,"offset":408},"start":{"column":24,"line":23,"offset":403}}},{"id":"d959ab8d-0d71-4a0e-bce8-73744b7d06f1","metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":23,"offset":415},"start":{"column":30,"line":23,"offset":409}}}]]}},{"body":{"id":"6b0a9029-f1a9-4f3f-87fc-2ea2cf311be2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"77599962-d11a-41df-90dc-46ac6b7fdbca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"af0dc60f-7c2e-406f-93fc-de0205fe7560","members":[{"body":{"id":"1e7b2f1c-b920-470b-9cc0-5a336794cf4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"570cab4f-27a0-4241-a11c-ae4ac8b903e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"4cd73d3d-beb9-403c-8adc-954dbf33b5a7","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":77,"line":25,"offset":496},"start":{"column":71,"line":25,"offset":490}}}],"id":"72009724-d86a-4980-a59b-a612e28bd04c","message":"hacerEvento","metadata":[],"receiver":{"id":"53ef6866-6592-48f1-8011-167d1441573c","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":25,"offset":477},"start":{"column":57,"line":25,"offset":476}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":78,"line":25,"offset":497},"start":{"column":57,"line":25,"offset":476}}}}]},"id":"a014a491-1e00-4463-b653-c03c331ee965","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"e190ef73-180b-4e87-bca9-5022310cdd90","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":25,"offset":474},"start":{"column":54,"line":25,"offset":473}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"107398f2-c618-4a48-b80e-8e9cbb0e2220","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"b84c4ac5-66e6-451b-a6b9-d4ff23371f76","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.hacerEvento(evento)}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":79,"line":25,"offset":498},"start":{"column":53,"line":25,"offset":472}},"supertypes":[{"args":[],"id":"62fe8ca6-086b-4891-a209-5f4921b26e5e","metadata":[],"reference":{"id":"75699c36-acbc-4941-950e-7d3910ebafbc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"5563c8b8-5b39-4acb-9b61-5dd83bdfe09b","message":"forEach","metadata":[],"receiver":{"id":"71a6d4f0-b793-4884-b598-8ec0aeb65843","metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":25,"offset":463},"start":{"column":33,"line":25,"offset":452}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}}}],"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}},"id":"b4b93721-0c7b-4fec-9ca4-af41a679c285","isOverride":false,"metadata":[],"name":"vivirEvento","parameters":[{"id":"90cc3075-c741-40a3-b19f-14b8c4a2e733","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":25,"offset":449},"start":{"column":24,"line":25,"offset":443}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":5,"line":25,"offset":424}}}],"metadata":[],"name":"grupo","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":502},"start":{"column":1,"line":22,"offset":365}},"supertypes":[]},{"id":"13aa86b1-c3ee-4f5e-8f4f-9b90e0357c9c","members":[{"id":"6653da5d-c026-485f-b2b3-c5063324169d","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":5,"line":29,"offset":527}},"value":{"id":"ee14151f-dfb5-4975-9886-b46f315ee44b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":31,"line":29,"offset":553}},"value":100}},{"id":"4cb8a9bf-194a-4f8f-8158-9c227d70ae65","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":5,"line":30,"offset":562}},"value":{"id":"2853b552-9c00-4d46-9047-5cf15a8e9b4f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":36,"line":30,"offset":593}},"value":0}},{"id":"4f14d96a-5969-4408-bff4-8f8578c2357a","isConstant":true,"isProperty":true,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":5,"line":31,"offset":600}},"value":{"id":"e6d57e8d-9dc6-4def-bdd5-fe44f3266018","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":41,"line":31,"offset":636}},"value":5}},{"body":{"id":"eed70581-7acb-4a9d-8ffa-5ff25c1d8482","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"504fa572-00ed-4b57-bcf4-9a685afb5245","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"31fd59ef-1123-4014-b619-612d677d171b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}},"value":true}}],"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}}},"id":"1c10f7a1-bd6a-4ba9-abf5-4f5f6e9f1dd2","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":3,"line":34,"offset":704}}},{"body":{"id":"7f366087-e16e-4a1c-b259-dd3f5d75acae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bdf753f6-0add-4fc3-96c0-ed49a97a923c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2d50a5b9-4a81-477d-bdf7-7e9b1ed476ef","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}}}],"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}},"id":"92f24ec7-caa8-4da7-bcf3-cbaeddae1974","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[{"id":"48c2bf0b-22cc-4f7d-83bf-0e7b883dd559","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":36,"offset":773},"start":{"column":31,"line":36,"offset":768}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":5,"line":36,"offset":742}}},{"body":{"id":"6a0a3fc4-ca7d-4b08-b177-ed0a43d9a04b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"62b8b98a-9228-48ae-856f-a4a22dc8c54f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":5,"line":39,"offset":818}},"value":{"args":[],"id":"3d3305f9-3149-465f-a1b4-1f54b033560c","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"28e1cb38-6199-47a7-b46f-53bba3d8d23d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":24,"line":39,"offset":837}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":22,"line":39,"offset":835}}},"variable":{"id":"429a90d2-d3c2-42be-ab9d-170206e2241c","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":39,"offset":833},"start":{"column":5,"line":39,"offset":818}}}},{"condition":{"args":[],"id":"3d607ad5-0334-407e-bd7e-62a70c404ded","message":"puedeLiberarse","metadata":[],"receiver":{"id":"e1173ea3-2664-47da-9982-f8ca00b7b714","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":40,"offset":851},"start":{"column":8,"line":40,"offset":847}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":868},"start":{"column":8,"line":40,"offset":847}}},"elseBody":{"id":"a0494979-1492-4336-afdd-c58ac8ee4bad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"1080c6cf-83a6-43c5-87cc-bc353dd8172c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":5,"line":40,"offset":844}},"thenBody":{"id":"782b98d4-a832-4f35-a6e1-de16ad57542c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2075d1af-a4cd-415c-ae87-f24c4479f433","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":9,"line":41,"offset":880}},"value":{"args":[{"args":[],"id":"8a18a239-3972-49d3-9200-fddf504471dc","message":"impacto","metadata":[],"receiver":{"id":"f390bdca-23e5-4b53-ac19-3118cde131a3","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":41,"offset":900},"start":{"column":23,"line":41,"offset":894}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":23,"line":41,"offset":894}}}],"id":"0d602ddc-687d-4956-87b4-a8281aaf94d4","message":"-","metadata":[],"receiver":{"id":"9cd3684e-8e6c-4fdd-b22a-859ab413f616","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"96ba8ebb-cd8d-4ea8-a24c-256d7fe699fb","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}}}],"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":30,"line":40,"offset":869}}}}],"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":26,"line":38,"offset":811}}},"id":"66699e68-769d-4528-9ac3-d2139c017bd6","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"d259f709-da72-47b1-8d0e-02bc14343bdb","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":809},"start":{"column":18,"line":38,"offset":803}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":3,"line":38,"offset":788}}},{"body":{"id":"fb2a8d20-58c5-4b39-9997-40102b2bad5b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4d68f226-3b0d-4ca7-b1e6-78d7344f830b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e7195e1d-29fb-434e-ab69-655068de3a87","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":45,"line":45,"offset":970}}}],"id":"6d78f90b-9fa8-432c-9a9a-2b1b2acf5b02","message":">","metadata":[],"receiver":{"id":"936f7129-8491-4b23-9f3e-adade72b4957","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":45,"offset":969},"start":{"column":34,"line":45,"offset":959}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}}}],"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}},"id":"3230b451-be0a-41a2-a062-54e55b48f71f","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":5,"line":45,"offset":930}}},{"body":{"id":"c5b3e60c-75f3-4541-922e-83572b6da848","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e7067487-a793-4f06-b98b-32d965b64614","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"240b3d05-25bb-44b3-9c91-62bdd43747c2","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"ef050e4e-e607-4a7a-bcd6-5f12a7b4de59","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"90521c6e-1686-4ca6-a781-2b1807323a2b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"760cf356-4fbf-4e3d-a76d-119fdef99a50","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1b395f9b-8c83-4977-80de-def1dd091447","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"47fad951-f2a7-4da0-863f-2c633014155c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"514671a0-33b5-4b8a-94c1-ba68344c6c0d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"90c07a25-4bc8-4fd8-8015-b7eb5a3b04d5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1da6fafe-e8f7-4577-bc5b-a51647d2c633","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"431e842e-d793-4f1e-9287-d2d8d3187ffb","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"c16e3d05-012f-4deb-b570-21af08ae4dee","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7e57a05a-480e-4f96-807a-cd7c39e5d977","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"056f7de8-2834-441d-b8cd-2dd7bfa277c4","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"38269a6d-6d00-470f-b09a-a9e473d69466","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"72d3003c-dec1-4727-beb7-07629484c1fc","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"77f30483-2f2c-4d8b-b679-8c48c84efda8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"20e2ae0b-d073-4119-9cbf-2ead1c820309","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8e6c7dc1-5b00-4b4a-9456-b4df6d2d651b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"76567582-7024-41ec-bde5-b1b9250f6d10","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"4a81d861-c93f-4b93-88f7-d9bde8d0b038","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"8d87afa8-d9ce-4cbf-a212-3fab9f48e07c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"1ea13900-8125-43f0-b22d-e74a7ce657c4","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":47,"offset":993},"start":{"column":1,"line":27,"offset":504}},"supertypes":[]},{"id":"7c925fd5-6c66-4443-8aad-f092988b8689","members":[{"id":"03c9cd06-7dfb-4abf-bba3-9ba4917c10c0","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":5,"line":50,"offset":1032}},"value":{"id":"f860d406-48d4-4c3a-a20d-2f79f7905558","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":22,"line":50,"offset":1049}},"value":[{"id":"333323fd-18cb-44bd-90a0-369144c692b1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"2ba3171d-b070-4342-9dc8-e994785caa48","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"029e3563-0a71-4292-a509-c5ce2268e5e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"99e9c436-fb91-437e-826c-ba04789f7724","message":"intensidadElevada","metadata":[],"receiver":{"id":"add3f093-5e16-44f1-a6ce-c7fc22680d8c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":52,"offset":1125},"start":{"column":67,"line":52,"offset":1121}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":67,"line":52,"offset":1121}}}],"id":"67598e63-94b9-42df-9336-a9491b020c5b","message":"and","metadata":[],"receiver":{"args":[],"id":"8da4877a-5985-47ac-8a3c-9f8f3d29d0a4","message":"tienePalabrota7","metadata":[],"receiver":{"id":"508de8b9-9996-4bdf-92e6-e479b94fed5f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":52,"offset":1098},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":52,"offset":1116},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}}}],"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}},"id":"a022f2fe-4ee7-49e3-9994-5bff64c76862","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":5,"line":52,"offset":1059}}},{"body":{"id":"9646278e-9817-4825-90b6-17e86e9873ee","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"48e65b34-cb90-4c1e-822b-696249b93cad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"55a5bf21-f2b5-4494-9fab-cca59c68eb46","members":[{"body":{"id":"4f88e051-5497-40ea-9396-938fa288ec38","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"525776b5-0a37-459a-97ad-9463dbdd335c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ca3c1cca-aa85-46ce-b994-fc48208b765d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":59,"line":53,"offset":1205}},"value":7}],"id":"eb605dc9-9954-4107-84da-02fd9a01734f","message":">","metadata":[],"receiver":{"args":[],"id":"3dbf52d9-6bb2-43fe-b6c9-675d07c28e3a","message":"size","metadata":[],"receiver":{"id":"8936bd13-46e9-4497-b577-12f4c48758c0","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":53,"offset":1197},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":53,"offset":1204},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":50,"line":53,"offset":1196}}}}]},"id":"57a3e1ff-b509-4bdd-8601-f036682d4991","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"ff5afca8-8acb-4684-b3fb-7e828ff4096f","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":53,"offset":1194},"start":{"column":47,"line":53,"offset":1193}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"e5d9fc37-be27-4c98-81f7-7f70f49e3b5b","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"5808ce23-9537-4614-8826-ad439bef4ccb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":46,"line":53,"offset":1192}},"supertypes":[{"args":[],"id":"41008227-b6e2-40b5-803c-cb145d64ca31","metadata":[],"reference":{"id":"9e0d5ba1-35ca-46f2-acd4-25652a7bc4dd","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"366c67a3-73ba-4e74-88d8-64517ce5bae4","message":"any","metadata":[],"receiver":{"id":"e3cad137-5f56-4ab0-b92b-45b7aaf39f63","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":53,"offset":1188},"start":{"column":32,"line":53,"offset":1178}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}}}],"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}},"id":"f1791330-90bf-414a-a1c2-48033ecfa827","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":5,"line":53,"offset":1151}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":55,"offset":1212},"start":{"column":1,"line":49,"offset":997}},"supertypes":[{"args":[],"id":"9a16292c-4999-42be-985e-961a319e4d42","metadata":[],"reference":{"id":"218fb481-956c-4cbf-8178-785cf6b75962","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}}]},{"id":"5386944e-68bd-4f02-9d65-08569e1ba278","members":[{"body":{"id":"3572dfca-6cd5-4036-aadb-2b3f51878f20","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"de060c79-d895-47e8-81fb-100caa0b98ec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":9,"line":59,"offset":1297}},"value":{"args":[],"id":"224d7334-1df8-447d-b352-da0869da2bc1","message":"abs","metadata":[],"receiver":{"id":"aed5517f-0e15-4b20-916d-72bb6cc3baf7","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":59,"offset":1315},"start":{"column":22,"line":59,"offset":1310}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":22,"line":59,"offset":1310}}},"variable":{"id":"47135df4-06c7-4ac8-83d7-e7de30f45d56","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":59,"offset":1307},"start":{"column":9,"line":59,"offset":1297}}}}],"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":38,"line":58,"offset":1286}}},"id":"63c37fdc-af5b-4283-94e1-9554c245a6a6","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"e5999ee4-7789-414c-9651-1f3d59c76ebd","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":58,"offset":1285},"start":{"column":32,"line":58,"offset":1280}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":5,"line":58,"offset":1253}}},{"body":{"id":"ccb11970-caca-4bb3-af54-5250d1f0b2cb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"86dc9265-58ae-40ea-b6ab-32d356a817a0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"59536eff-200a-4897-9c20-6af391f3b2be","message":"eventosPar","metadata":[],"receiver":{"id":"21ae9b1e-7bb8-416d-a9a3-5bafc3ae836e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":61,"offset":1401},"start":{"column":68,"line":61,"offset":1397}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":68,"line":61,"offset":1397}}}],"id":"00f16c8a-2ffe-4bd3-b094-3ccd1dca2d57","message":"&&","metadata":[],"receiver":{"args":[],"id":"9cbda00e-64ea-43c9-a46d-3f085be08b8c","message":"intensidadElevada","metadata":[],"receiver":{"id":"c3c2e0ce-b1e5-4d3a-b3b4-00cbf179c937","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":61,"offset":1373},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":61,"offset":1393},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}}}],"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}},"id":"2917a2aa-e2fb-41e3-bc0c-8e8f5fd43948","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":5,"line":61,"offset":1334}}},{"body":{"id":"5f5a27fb-fef3-4cb6-8cb9-8786fa4b1e93","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a7afb08f-1d23-4c30-8c92-aceeb383a55c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"0b4aa69e-7655-4a29-bfe6-3d073ab4b67b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":48,"line":63,"offset":1465}},"value":0}],"id":"7fabda13-5974-4cd7-acae-e0d2eb8a3b54","message":"==","metadata":[],"receiver":{"args":[{"id":"3f495e87-c818-417c-97b0-e62c079b42ae","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":43,"line":63,"offset":1460}},"value":2}],"id":"3597189e-1788-45df-ba9c-099160af7e64","message":"%","metadata":[],"receiver":{"id":"4324a1c2-0c31-4e4d-89ee-d4adad56aba9","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":63,"offset":1459},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}}}],"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}},"id":"ade58117-eac2-45e5-a8ae-6bd2062c8136","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":5,"line":63,"offset":1422}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":65,"offset":1475},"start":{"column":1,"line":57,"offset":1216}},"supertypes":[{"args":[],"id":"40fc3064-ab85-46a8-9a0c-e849f4a5b0ae","metadata":[],"reference":{"id":"369ba2f7-8d6b-476d-9ce0-d14771613ec3","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}}]},{"id":"5db29254-bbe3-439a-bb2a-b5f16942ccff","members":[{"id":"a3fe6b7f-70a3-4580-81e9-daa3ef853a44","isConstant":true,"isProperty":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":68,"offset":1528},"start":{"column":5,"line":68,"offset":1517}},"value":{"id":"e4fd7e85-3e05-42e7-89aa-a269bbaff297","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"15d5a7ab-eec5-4a02-a399-21a8c64126c8","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d1bcc4d7-82c7-427a-80b9-b05ba3828d18","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2af3823b-41bb-441d-8f81-7ba1b8002a25","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}}}],"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}},"id":"9622a02a-75b3-4712-a2b8-9bcfcec5a467","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":5,"line":69,"offset":1534}}},{"id":"281e3d50-d9a9-43e0-a06a-47fa9dd2d69f","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":5,"line":71,"offset":1582}},"value":{"id":"bfa7d8ba-2c52-481f-9b58-9d0796d59eb9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":26,"line":71,"offset":1603}},"value":"melancolia"}},{"body":{"id":"9e340511-0c2b-46a0-ba82-64ba3cedf687","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8191d4c5-9be9-4404-9d8b-4acc90eadb45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"607aea7c-7a74-41c7-aa24-481935dc1699","message":"intensidadElevada","metadata":[],"receiver":{"id":"1fc5525e-a908-4aab-8cad-702f3e672fd2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":69,"line":72,"offset":1685},"start":{"column":65,"line":72,"offset":1681}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":65,"line":72,"offset":1681}}}],"id":"d843dec6-9936-4a2e-983e-f5b727611a22","message":"&&","metadata":[],"receiver":{"args":[{"id":"93782c6a-6ac2-44ca-be55-b9b8c1d13e0f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":49,"line":72,"offset":1665}},"value":"melancolia"}],"id":"833bbac9-b6a9-4184-a56e-bfa5033d2448","message":"!=","metadata":[],"receiver":{"id":"ade62664-d280-4e49-99f5-9bfba6a163a5","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":72,"offset":1661},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}}}],"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}},"id":"7cdb49af-5960-43a4-9182-e1e946adf015","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":5,"line":72,"offset":1621}}},{"body":{"id":"462d1218-35da-423d-9737-27268551e868","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"59b58bcd-70bd-44ab-b402-626087fbb999","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":74,"offset":1765},"start":{"column":15,"line":74,"offset":1759}}}],"id":"b68a16c9-f9e2-484a-80e5-e870e60cf108","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":74,"offset":1766},"start":{"column":9,"line":74,"offset":1753}}},{"id":"22e872ba-4b8b-456a-950a-4330dc988888","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":9,"line":75,"offset":1776}},"value":{"args":[],"id":"52c35547-1fd5-467b-bb8f-7e2ecc81dc0b","message":"descripcion","metadata":[],"receiver":{"id":"96c63610-4327-4a35-acc4-4723c4ff5bb8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":75,"offset":1790},"start":{"column":17,"line":75,"offset":1784}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":17,"line":75,"offset":1784}}},"variable":{"id":"9ac9a08d-610c-4e1f-b2d8-8f08ff0c9ad9","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":75,"offset":1781},"start":{"column":9,"line":75,"offset":1776}}}}],"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":36,"line":73,"offset":1742}}},"id":"f12b2629-cde0-4a77-8fbb-59f65f7e4033","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"c1c17a43-5b3e-411e-bc4b-a4c207cab013","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":73,"offset":1741},"start":{"column":29,"line":73,"offset":1735}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":5,"line":73,"offset":1711}}},{"body":{"id":"09d49432-be2a-42bd-9437-65614ddb26ca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3a9c820d-58b9-40f2-840b-4c2d1f42cf1a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b0341f54-01c3-45dd-a336-8950f944196b","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0d7a5694-c3c8-4d23-b80f-443c9b362b0c","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"e7afe02c-0155-492d-a08d-882914eb8f4f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d63e2dcb-8ef6-4483-9c92-925d7d58e9b3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"3d0d4e4e-1f05-47f4-9070-33453e9e8b42","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e142842a-8a24-4c5c-acfb-891b0a5a7b40","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"bf3b5e93-c3a0-4ef7-98e1-f7e838190b9b","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"8d441fcb-f942-41b3-bc49-495205021cf8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":77,"offset":1814},"start":{"column":1,"line":67,"offset":1479}},"supertypes":[{"args":[],"id":"330d4502-24b5-4b2d-bfe2-b75ea73c0766","metadata":[],"reference":{"id":"855c41d5-c53e-4897-99d0-d136f4b93455","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}}]},{"id":"e88c8506-b9b5-40ae-a0a2-8c0b2f6d871b","members":[{"body":{"id":"4d4d3aad-5ad5-4505-bdd4-bb683c8239a3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"09062965-3ab7-4b2f-a9e8-4f174587a1e7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"6472954c-22ed-44b6-b42d-acabd4ed458f","message":"intensidadElevada","metadata":[],"receiver":{"id":"4401bfd7-1773-4ec6-9a5a-f6f3dbed373f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":76,"line":80,"offset":1934},"start":{"column":72,"line":80,"offset":1930}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":72,"line":80,"offset":1930}}}],"id":"b9b05156-f384-4fbc-ac49-d9486a49d529","message":"&&","metadata":[],"receiver":{"args":[{"id":"3c197f7e-ed79-4913-9e5c-cb5652fd126c","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":58,"line":80,"offset":1916}}}],"id":"87409450-cbe2-462b-870c-eeb4a67d5bbf","message":">","metadata":[],"receiver":{"id":"70ce6e99-4957-4609-b5e5-cda6bb8808ec","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":80,"offset":1913},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}}}],"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}},"id":"194b2538-61cc-475b-8dae-391504bb82ab","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":5,"line":80,"offset":1863}}}],"metadata":[{"args":{"position":"end","text":"//Se libera si el impacto de la última emocion fue mayor al criterio de intensidad"},"name":"comment"}],"name":"DesagradoYtemor","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":81,"offset":1957},"start":{"column":1,"line":79,"offset":1818}},"supertypes":[{"args":[],"id":"2bbf123e-48d3-42a2-9a0f-de77f2c0df71","metadata":[],"reference":{"id":"44c5ffd8-5973-461f-8ba6-10f16025ad4f","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}}]},{"id":"682d5aa9-0ec4-4cde-8c3c-6f2b71aa97ae","members":[{"id":"0d0c04ed-35e9-4c4c-afe3-3d129b36bae2","isConstant":false,"isProperty":true,"metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":5,"line":85,"offset":2083}},"value":{"id":"566c7035-87e5-46dd-a721-009e0b7039eb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":29,"line":85,"offset":2107}},"value":10}},{"body":{"id":"2472623b-f6a6-4bf9-b236-0feff374b1b2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3b8e167c-6a9d-479c-819c-3b6846e766f4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"23c7da7d-86e4-454d-9e15-36621594f017","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}},"value":100}}],"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}}},"id":"56026512-4492-4b93-baba-f6ff7d2f4463","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":5,"line":86,"offset":2115}}},{"body":{"id":"d325cbfc-d9dd-4d24-b6b4-2d62d1dada6a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0321b9b-38e1-4f41-9853-570453ba2b7d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3332ce97-adf1-4f5f-9318-b1d62fc9b95f","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":52,"line":87,"offset":2192}}}],"id":"a4356997-c7e5-4b89-8aef-e4c93b4e1dba","message":">","metadata":[],"receiver":{"id":"b5965cea-d5a8-4d5e-970f-f36e310b80ae","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":87,"offset":2189},"start":{"column":41,"line":87,"offset":2181}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}}}],"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}},"id":"9835e866-4812-44c1-81fb-0a3ae4d6d53c","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":5,"line":87,"offset":2145}}},{"body":{"id":"52528b7b-106d-47fd-8705-2383d9ad96b3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"1429a272-4d63-439a-8991-457e90a6759c","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":89,"offset":2270},"start":{"column":15,"line":89,"offset":2264}}}],"id":"3a579993-ed23-4d51-9a3e-4145aa27aa3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":89,"offset":2271},"start":{"column":9,"line":89,"offset":2258}}},{"id":"cd5ab7c7-56dd-464d-8952-5c2117f08c4d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":9,"line":90,"offset":2281}},"value":{"args":[],"id":"00569e53-116c-48b6-aca0-7dfa68e97608","message":"impacto","metadata":[],"receiver":{"id":"f97fc7d9-d128-48c2-b8a5-e88ffcd4a3ae","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":90,"offset":2298},"start":{"column":20,"line":90,"offset":2292}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":20,"line":90,"offset":2292}}},"variable":{"id":"45b85425-a8c6-44a6-b4b3-eb9e34d043a9","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":90,"offset":2289},"start":{"column":9,"line":90,"offset":2281}}}}],"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":36,"line":88,"offset":2247}}},"id":"121b7047-07f2-467c-874f-90448ebeab3d","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"248b72d8-cf62-413e-a5cd-b3c1f265ac40","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":88,"offset":2246},"start":{"column":29,"line":88,"offset":2240}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":5,"line":88,"offset":2216}}},{"body":{"id":"e790c58f-5a18-4288-b168-783d6bba7295","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7a3e5b6b-709b-41e8-84a6-dc6524f98252","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b0032700-5cb8-4cb3-aa5f-19707d0d9cf2","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"f258a492-e19a-4e71-bdc4-0774a1a8da6c","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"8ebd3adf-6252-468e-a654-8dd855e1fcfb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6781e031-0171-4522-a0ce-3123639702a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ba8be2a7-00aa-4d3e-82f4-846ca01894bc","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"34e01ae0-48a5-4c78-b95c-c92e55f90f36","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"3ce1fce0-70e3-4e64-94ba-523864f8b688","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[{"id":"1aa75c46-3470-406e-87ce-1a3bfa335bf8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Especial","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":92,"offset":2318},"start":{"column":1,"line":84,"offset":2045}},"supertypes":[{"args":[],"id":"605b84b5-0168-405c-b5c3-dfe38bffdd0b","metadata":[],"reference":{"id":"242229d0-abc6-4370-b220-0150d5b47110","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}}]},{"id":"10c1df0f-10d9-4535-afbd-0ed62c059e10","members":[{"id":"36f36d99-15e5-464c-b6f2-b83ed9db15e5","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":95,"offset":2363},"start":{"column":5,"line":95,"offset":2341}},"value":{"id":"77a54c57-b6ea-471c-89a9-b86bc194b32c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8a944590-347c-4d19-a49e-e950b6e7a062","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":96,"offset":2386},"start":{"column":5,"line":96,"offset":2369}},"value":{"id":"f1bcc17b-32e8-430f-bdb4-bb2e16af92a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"0999b0e1-7c4c-4543-832e-237bd2d9267e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"36d22efd-2d55-4b65-ac47-19a54508681f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"01bcf82b-d459-4bd0-b81b-5e60bde35741","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}}}],"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}},"id":"a6d5586f-93f7-40fc-9df8-4415e13f41f5","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":5,"line":98,"offset":2394}}},{"body":{"id":"4f56af4f-c4f3-43a0-b3a3-b5535067835f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7c40abde-66c1-4eab-a59d-8b618b192904","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"df8ce49c-ed52-46ba-9f2c-a5a293a30b99","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"90f43d79-bd7b-468c-a998-1f7c663d9609","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":99,"offset":2432},"start":{"column":1,"line":94,"offset":2322}},"supertypes":[]},{"id":"9600e6fb-53cf-4eba-87c5-4cb7aca150bd","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":1,"line":101,"offset":2436}},"value":{"args":[{"id":"e1d3ee4a-cf12-4750-9846-3e13e07afad4","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":27,"line":101,"offset":2462}},"value":{"id":"964a4a90-2c2e-48f7-969f-38e7844f3685","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":35,"line":101,"offset":2470}},"value":10}},{"id":"2746225f-37ea-427c-bd6d-95be799e61fa","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":39,"line":101,"offset":2474}},"value":{"id":"ae25102a-1aa0-4078-8bae-5987fb157c12","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":53,"line":101,"offset":2488}},"value":"FLOW"}}],"id":"582a57dc-c78c-4532-90ad-22f009c9079d","instantiated":{"id":"2cd3b14b-6b09-4b9b-807a-c7e682e840da","metadata":[],"name":"Evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":101,"offset":2461},"start":{"column":20,"line":101,"offset":2455}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":16,"line":101,"offset":2451}}}},{"id":"63386881-ff44-4aa8-ad4b-8da7f68cdc85","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":102,"offset":2541},"start":{"column":1,"line":102,"offset":2497}},"value":{"args":[{"id":"21999067-11f9-435d-a3e0-54028ac22510","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":102,"offset":2540},"start":{"column":28,"line":102,"offset":2524}},"value":{"id":"86a593d6-5379-4513-a8cf-f641e8d50dfd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":102,"offset":2540},"start":{"column":39,"line":102,"offset":2535}},"value":[{"id":"d79d0179-0177-43b0-b0f1-e0d06278e71b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"74f06927-67f8-4313-b4eb-a9f039813f9f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":102,"offset":2539},"start":{"column":40,"line":102,"offset":2536}},"value":"a"}]]}}],"id":"72d0ee9b-5704-4cfb-b74a-7692691fce92","instantiated":{"id":"a401c14d-b2ed-4b2c-9110-2af737e44899","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":102,"offset":2523},"start":{"column":22,"line":102,"offset":2518}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":102,"offset":2541},"start":{"column":18,"line":102,"offset":2514}}}},{"id":"112724b3-841c-45e6-a9b3-ab9d39736b1a","isConstant":true,"metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2585},"start":{"column":1,"line":103,"offset":2543}},"value":{"args":[{"id":"e81a0a07-856c-4d82-a271-041f7ec32839","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2584},"start":{"column":30,"line":103,"offset":2572}},"value":{"id":"b8c27e75-854c-49d0-89b1-5011108f606b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2584},"start":{"column":41,"line":103,"offset":2583}},"value":1}}],"id":"8282c2bf-f86a-4499-aba5-9f11b39aa195","instantiated":{"id":"7e64edc2-88fa-480d-8150-a4d240fb7c36","metadata":[],"name":"Alegria","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":103,"offset":2571},"start":{"column":22,"line":103,"offset":2564}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2585},"start":{"column":18,"line":103,"offset":2560}}}},{"id":"367d0b0b-2b77-4ebb-9e8f-570d7c7d7ca8","isConstant":true,"metadata":[],"name":"emocion3","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":104,"offset":2644},"start":{"column":1,"line":104,"offset":2587}},"value":{"args":[{"id":"41e77472-5649-449d-b9cf-edbc785218d6","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":104,"offset":2643},"start":{"column":28,"line":104,"offset":2614}},"value":{"id":"8f36111a-859c-4327-bb5c-25d84e8f41cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":104,"offset":2643},"start":{"column":39,"line":104,"offset":2625}},"value":[{"id":"bff9d717-83d7-4f0f-a1cb-bc506ba13131","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"4180e3ff-9c46-4377-bdf6-623e488e66cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":104,"offset":2642},"start":{"column":40,"line":104,"offset":2626}},"value":"AAAAAAAAAAAAAA"}]]}}],"id":"fbd5e69c-5cf2-415f-a694-39a63a0794b2","instantiated":{"id":"0b93ae9f-7fad-473c-bd4f-edc7e8fef38f","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":104,"offset":2613},"start":{"column":22,"line":104,"offset":2608}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":104,"offset":2644},"start":{"column":18,"line":104,"offset":2604}}}},{"id":"0b5d0a38-fec2-469f-8a93-f03645ecd74e","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2711},"start":{"column":1,"line":105,"offset":2646}},"value":{"args":[{"id":"9f8ee2a5-7448-482b-87c4-e4bf9431d73a","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2679},"start":{"column":28,"line":105,"offset":2673}},"value":{"id":"96d0c9ad-8daf-4105-acf5-e1207a52ec5b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2679},"start":{"column":33,"line":105,"offset":2678}},"value":2}},{"id":"e5c5136b-4538-4c79-ba6d-cf34b9694d3c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2710},"start":{"column":36,"line":105,"offset":2681}},"value":{"id":"b5d3cc48-ed4a-4cb6-84e2-f94641a5a8ff","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2710},"start":{"column":46,"line":105,"offset":2691}},"value":[{"id":"cd363018-c34e-4459-a778-ec7790bb92ce","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"83672c34-2204-4bae-98e9-5c6d49e22461","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":105,"offset":2700},"start":{"column":47,"line":105,"offset":2692}}},{"id":"12fe9de2-9f19-4f37-bbc3-fe9818c1e00b","metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":105,"offset":2709},"start":{"column":56,"line":105,"offset":2701}}}]]}}],"id":"27e871ca-8ae0-4c82-a48f-36373e2c8ee6","instantiated":{"id":"10300e34-c190-4a62-a554-db7d401d1b00","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":105,"offset":2671},"start":{"column":19,"line":105,"offset":2664}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2711},"start":{"column":15,"line":105,"offset":2660}}}},{"id":"a76a319c-12e6-47c6-905c-010687b91459","isConstant":true,"metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2731},"start":{"column":1,"line":106,"offset":2713}},"value":{"id":"33ca82e9-cb47-4b45-a710-ed5d47e03cd1","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2731},"start":{"column":16,"line":106,"offset":2728}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":58,"line":106,"offset":2770},"start":{"column":20,"line":106,"offset":2732}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:04:49.789Z"} diff --git a/log/wollok6.log b/log/wollok6.log new file mode 100644 index 0000000..750c95c --- /dev/null +++ b/log/wollok6.log @@ -0,0 +1,161 @@ +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"763332a2-08ac-44dd-b6bc-09d7095a22f9","imports":[],"members":[{"id":"fda71cb1-93d1-4ef4-9a72-704d6be191c5","members":[{"id":"41e2ed92-576c-481e-8593-755a3804faf0","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"e8fdcaf3-5c8a-4ee7-a2ea-ccb11c5ae316","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8ed66fa9-95ed-40dd-a787-732b138cb954","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"1322b5e1-f21f-41fc-a9af-97f0c9a354e1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"98a678f0-f9c4-4717-a6f3-c0feeed6731b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"a72d0222-c7c2-4785-8c49-7c460df2ab4e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"350fab84-27b6-4daf-9f39-09651cc7c138","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"bc0acb44-d114-441b-b85c-49ab2570cd41","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"16043620-8074-4dcf-99cf-e45f34d746e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"f23515f2-f84f-45fe-84a8-5344eb148a72","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"c0a46a99-95bc-46b1-827c-cc5f42639fa9","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"6b35205b-fa03-4758-a2fc-cf1ee307bfaf","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"55db81b6-e17c-4f90-aad0-08ec983c2412","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bcc490e5-b175-44f4-9b21-a97a492a255e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"a0132561-34fa-49f4-aae0-a9313f925739","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"1a3f3dd8-1175-471f-a710-e1368cb13d46","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"ff9c85c3-4227-4b6a-b6c9-b240fe8c1163","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"3e7e1b9b-c1d2-46ab-981f-37014a48be72","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"b0244adb-5f61-4161-8f0f-2717bfda0703","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"59b84927-8b51-4c0f-a9d9-482e4ce89981","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bf01b49e-a4ec-48d8-9bd6-1630465a1245","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2f599ed9-299b-4009-bf61-07220cbc6aae","members":[{"body":{"id":"ddd7d89b-5404-4427-a3c8-8c0205a26673","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0ada8c1-ba93-4621-97a8-8b598e6b21e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"2e87545d-40d3-49b7-a150-018eea618bdb","message":"puedeLiberarse","metadata":[],"receiver":{"id":"fc5b03cd-a5de-48bf-91b5-88b7a3676047","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"76c2f8e4-6f84-4ded-9795-641832a6a386","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5fc8a798-0e8b-452f-81fc-0b157a05669e","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"e4f9d058-2e44-4721-b584-ff01b718fc21","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"3fba6925-bc0a-4f18-9473-bb7f42aae45d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"ea2809bf-dc9f-42d7-8050-737c930cd070","metadata":[],"reference":{"id":"69ecd452-8d47-414c-a340-38633095379f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"a3e174fb-f660-4632-893e-a308104052d5","message":"all","metadata":[{"args":{"position":"end","text":"//4 "},"name":"comment"}],"receiver":{"id":"1bcd7462-3c3f-485d-8b47-d3e985f7b8f8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":28,"line":13,"offset":218}}},"id":"6f24397e-ec06-4e28-bf5d-2899ea36870f","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"32500773-4ae8-4a7d-841c-0aa245529b13","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ab812634-e265-4935-a70e-81d63d251580","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":5,"line":17,"offset":301}},"value":{"args":[{"id":"d2786d39-b2df-4713-b34b-194afb369297","members":[{"body":{"id":"c380bc18-15c6-445c-9fed-40246f7e1913","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"69f914a8-21b8-4093-a00b-93ef51dd90b6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"a33c6b6f-a047-402f-9e0e-a3bb13129d31","message":"liberar","metadata":[],"receiver":{"id":"3d3016f6-66fd-4aeb-b6ca-8e5728259997","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":17,"offset":335},"start":{"column":38,"line":17,"offset":334}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":17,"offset":345},"start":{"column":38,"line":17,"offset":334}}}}]},"id":"3ba6000c-deb1-4cb8-acbc-776377e98c7d","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"3d02a406-5873-4ad3-8e2b-50a1e05fb806","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":17,"offset":330},"start":{"column":33,"line":17,"offset":329}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"dfa56203-45d3-42fb-9c6f-d37024578616","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"9f3d5800-622b-40db-895b-1a9f5073f915","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":17,"offset":347},"start":{"column":31,"line":17,"offset":327}},"supertypes":[{"args":[],"id":"343332c9-fdbd-414d-b4b4-b08fa189f620","metadata":[],"reference":{"id":"3c256569-2146-4268-aae1-022be842011e","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"4eff7ef9-0e88-43d8-abb9-bb3eb587c696","message":"map","metadata":[],"receiver":{"id":"6bad0775-9ea9-47c5-8ded-4c79177d192b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":17,"offset":322},"start":{"column":17,"line":17,"offset":313}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":17,"line":17,"offset":313}}},"variable":{"id":"53093391-78bc-44c2-88a3-be4da7bd290b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":17,"offset":310},"start":{"column":5,"line":17,"offset":301}}}}],"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":24,"line":16,"offset":294}}},"id":"e48f7e72-576e-4ede-997c-9e4c0b92961c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":3,"line":16,"offset":273}}}],"metadata":[{"args":{"position":"end","text":"//6"},"name":"comment"}],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":19,"offset":356},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"8ed3d2ba-de10-46a6-9be7-3652f0552ae8","members":[{"id":"eb3043c5-fdf7-4539-a709-3202b0408342","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":5,"line":23,"offset":384}},"value":{"id":"3f77a5a4-06b5-403b-9412-27eca634fc45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":23,"line":23,"offset":402}},"value":[{"id":"2ba632d0-f44b-4022-978c-c3806c5a2167","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e27f9163-7840-4f11-b4ce-935b91cf8526","metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":23,"offset":408},"start":{"column":24,"line":23,"offset":403}}},{"id":"d959ab8d-0d71-4a0e-bce8-73744b7d06f1","metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":23,"offset":415},"start":{"column":30,"line":23,"offset":409}}}]]}},{"body":{"id":"6b0a9029-f1a9-4f3f-87fc-2ea2cf311be2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"77599962-d11a-41df-90dc-46ac6b7fdbca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"af0dc60f-7c2e-406f-93fc-de0205fe7560","members":[{"body":{"id":"1e7b2f1c-b920-470b-9cc0-5a336794cf4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"570cab4f-27a0-4241-a11c-ae4ac8b903e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"4cd73d3d-beb9-403c-8adc-954dbf33b5a7","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":77,"line":25,"offset":496},"start":{"column":71,"line":25,"offset":490}}}],"id":"72009724-d86a-4980-a59b-a612e28bd04c","message":"hacerEvento","metadata":[],"receiver":{"id":"53ef6866-6592-48f1-8011-167d1441573c","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":25,"offset":477},"start":{"column":57,"line":25,"offset":476}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":78,"line":25,"offset":497},"start":{"column":57,"line":25,"offset":476}}}}]},"id":"a014a491-1e00-4463-b653-c03c331ee965","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"e190ef73-180b-4e87-bca9-5022310cdd90","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":25,"offset":474},"start":{"column":54,"line":25,"offset":473}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"107398f2-c618-4a48-b80e-8e9cbb0e2220","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"b84c4ac5-66e6-451b-a6b9-d4ff23371f76","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.hacerEvento(evento)}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":79,"line":25,"offset":498},"start":{"column":53,"line":25,"offset":472}},"supertypes":[{"args":[],"id":"62fe8ca6-086b-4891-a209-5f4921b26e5e","metadata":[],"reference":{"id":"75699c36-acbc-4941-950e-7d3910ebafbc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"5563c8b8-5b39-4acb-9b61-5dd83bdfe09b","message":"forEach","metadata":[],"receiver":{"id":"71a6d4f0-b793-4884-b598-8ec0aeb65843","metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":25,"offset":463},"start":{"column":33,"line":25,"offset":452}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}}}],"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}},"id":"b4b93721-0c7b-4fec-9ca4-af41a679c285","isOverride":false,"metadata":[],"name":"vivirEvento","parameters":[{"id":"90cc3075-c741-40a3-b19f-14b8c4a2e733","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":25,"offset":449},"start":{"column":24,"line":25,"offset":443}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":5,"line":25,"offset":424}}}],"metadata":[],"name":"grupo","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":502},"start":{"column":1,"line":22,"offset":365}},"supertypes":[]},{"id":"13aa86b1-c3ee-4f5e-8f4f-9b90e0357c9c","members":[{"id":"6653da5d-c026-485f-b2b3-c5063324169d","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":5,"line":29,"offset":527}},"value":{"id":"ee14151f-dfb5-4975-9886-b46f315ee44b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":31,"line":29,"offset":553}},"value":100}},{"id":"4cb8a9bf-194a-4f8f-8158-9c227d70ae65","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":5,"line":30,"offset":562}},"value":{"id":"2853b552-9c00-4d46-9047-5cf15a8e9b4f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":36,"line":30,"offset":593}},"value":0}},{"id":"4f14d96a-5969-4408-bff4-8f8578c2357a","isConstant":true,"isProperty":true,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":5,"line":31,"offset":600}},"value":{"id":"e6d57e8d-9dc6-4def-bdd5-fe44f3266018","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":41,"line":31,"offset":636}},"value":5}},{"body":{"id":"eed70581-7acb-4a9d-8ffa-5ff25c1d8482","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"504fa572-00ed-4b57-bcf4-9a685afb5245","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"31fd59ef-1123-4014-b619-612d677d171b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}},"value":true}}],"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}}},"id":"1c10f7a1-bd6a-4ba9-abf5-4f5f6e9f1dd2","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":3,"line":34,"offset":704}}},{"body":{"id":"7f366087-e16e-4a1c-b259-dd3f5d75acae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bdf753f6-0add-4fc3-96c0-ed49a97a923c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2d50a5b9-4a81-477d-bdf7-7e9b1ed476ef","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}}}],"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}},"id":"92f24ec7-caa8-4da7-bcf3-cbaeddae1974","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[{"id":"48c2bf0b-22cc-4f7d-83bf-0e7b883dd559","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":36,"offset":773},"start":{"column":31,"line":36,"offset":768}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":5,"line":36,"offset":742}}},{"body":{"id":"6a0a3fc4-ca7d-4b08-b177-ed0a43d9a04b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"62b8b98a-9228-48ae-856f-a4a22dc8c54f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":5,"line":39,"offset":818}},"value":{"args":[],"id":"3d3305f9-3149-465f-a1b4-1f54b033560c","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"28e1cb38-6199-47a7-b46f-53bba3d8d23d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":24,"line":39,"offset":837}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":22,"line":39,"offset":835}}},"variable":{"id":"429a90d2-d3c2-42be-ab9d-170206e2241c","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":39,"offset":833},"start":{"column":5,"line":39,"offset":818}}}},{"condition":{"args":[],"id":"3d607ad5-0334-407e-bd7e-62a70c404ded","message":"puedeLiberarse","metadata":[],"receiver":{"id":"e1173ea3-2664-47da-9982-f8ca00b7b714","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":40,"offset":851},"start":{"column":8,"line":40,"offset":847}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":868},"start":{"column":8,"line":40,"offset":847}}},"elseBody":{"id":"a0494979-1492-4336-afdd-c58ac8ee4bad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"1080c6cf-83a6-43c5-87cc-bc353dd8172c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":5,"line":40,"offset":844}},"thenBody":{"id":"782b98d4-a832-4f35-a6e1-de16ad57542c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2075d1af-a4cd-415c-ae87-f24c4479f433","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":9,"line":41,"offset":880}},"value":{"args":[{"args":[],"id":"8a18a239-3972-49d3-9200-fddf504471dc","message":"impacto","metadata":[],"receiver":{"id":"f390bdca-23e5-4b53-ac19-3118cde131a3","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":41,"offset":900},"start":{"column":23,"line":41,"offset":894}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":23,"line":41,"offset":894}}}],"id":"0d602ddc-687d-4956-87b4-a8281aaf94d4","message":"-","metadata":[],"receiver":{"id":"9cd3684e-8e6c-4fdd-b22a-859ab413f616","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"96ba8ebb-cd8d-4ea8-a24c-256d7fe699fb","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}}}],"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":30,"line":40,"offset":869}}}}],"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":26,"line":38,"offset":811}}},"id":"66699e68-769d-4528-9ac3-d2139c017bd6","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"d259f709-da72-47b1-8d0e-02bc14343bdb","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":809},"start":{"column":18,"line":38,"offset":803}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":3,"line":38,"offset":788}}},{"body":{"id":"fb2a8d20-58c5-4b39-9997-40102b2bad5b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4d68f226-3b0d-4ca7-b1e6-78d7344f830b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e7195e1d-29fb-434e-ab69-655068de3a87","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":45,"line":45,"offset":970}}}],"id":"6d78f90b-9fa8-432c-9a9a-2b1b2acf5b02","message":">","metadata":[],"receiver":{"id":"936f7129-8491-4b23-9f3e-adade72b4957","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":45,"offset":969},"start":{"column":34,"line":45,"offset":959}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}}}],"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}},"id":"3230b451-be0a-41a2-a062-54e55b48f71f","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":5,"line":45,"offset":930}}},{"body":{"id":"c5b3e60c-75f3-4541-922e-83572b6da848","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e7067487-a793-4f06-b98b-32d965b64614","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"240b3d05-25bb-44b3-9c91-62bdd43747c2","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"ef050e4e-e607-4a7a-bcd6-5f12a7b4de59","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"90521c6e-1686-4ca6-a781-2b1807323a2b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"760cf356-4fbf-4e3d-a76d-119fdef99a50","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1b395f9b-8c83-4977-80de-def1dd091447","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"47fad951-f2a7-4da0-863f-2c633014155c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"514671a0-33b5-4b8a-94c1-ba68344c6c0d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"90c07a25-4bc8-4fd8-8015-b7eb5a3b04d5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1da6fafe-e8f7-4577-bc5b-a51647d2c633","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"431e842e-d793-4f1e-9287-d2d8d3187ffb","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"c16e3d05-012f-4deb-b570-21af08ae4dee","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7e57a05a-480e-4f96-807a-cd7c39e5d977","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"056f7de8-2834-441d-b8cd-2dd7bfa277c4","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"38269a6d-6d00-470f-b09a-a9e473d69466","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"72d3003c-dec1-4727-beb7-07629484c1fc","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"77f30483-2f2c-4d8b-b679-8c48c84efda8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"20e2ae0b-d073-4119-9cbf-2ead1c820309","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8e6c7dc1-5b00-4b4a-9456-b4df6d2d651b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"76567582-7024-41ec-bde5-b1b9250f6d10","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"4a81d861-c93f-4b93-88f7-d9bde8d0b038","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"8d87afa8-d9ce-4cbf-a212-3fab9f48e07c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"1ea13900-8125-43f0-b22d-e74a7ce657c4","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":47,"offset":993},"start":{"column":1,"line":27,"offset":504}},"supertypes":[]},{"id":"7c925fd5-6c66-4443-8aad-f092988b8689","members":[{"id":"03c9cd06-7dfb-4abf-bba3-9ba4917c10c0","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":5,"line":50,"offset":1032}},"value":{"id":"f860d406-48d4-4c3a-a20d-2f79f7905558","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":22,"line":50,"offset":1049}},"value":[{"id":"333323fd-18cb-44bd-90a0-369144c692b1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"2ba3171d-b070-4342-9dc8-e994785caa48","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"029e3563-0a71-4292-a509-c5ce2268e5e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"99e9c436-fb91-437e-826c-ba04789f7724","message":"intensidadElevada","metadata":[],"receiver":{"id":"add3f093-5e16-44f1-a6ce-c7fc22680d8c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":52,"offset":1125},"start":{"column":67,"line":52,"offset":1121}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":67,"line":52,"offset":1121}}}],"id":"67598e63-94b9-42df-9336-a9491b020c5b","message":"and","metadata":[],"receiver":{"args":[],"id":"8da4877a-5985-47ac-8a3c-9f8f3d29d0a4","message":"tienePalabrota7","metadata":[],"receiver":{"id":"508de8b9-9996-4bdf-92e6-e479b94fed5f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":52,"offset":1098},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":52,"offset":1116},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}}}],"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}},"id":"a022f2fe-4ee7-49e3-9994-5bff64c76862","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":5,"line":52,"offset":1059}}},{"body":{"id":"9646278e-9817-4825-90b6-17e86e9873ee","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"48e65b34-cb90-4c1e-822b-696249b93cad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"55a5bf21-f2b5-4494-9fab-cca59c68eb46","members":[{"body":{"id":"4f88e051-5497-40ea-9396-938fa288ec38","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"525776b5-0a37-459a-97ad-9463dbdd335c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ca3c1cca-aa85-46ce-b994-fc48208b765d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":59,"line":53,"offset":1205}},"value":7}],"id":"eb605dc9-9954-4107-84da-02fd9a01734f","message":">","metadata":[],"receiver":{"args":[],"id":"3dbf52d9-6bb2-43fe-b6c9-675d07c28e3a","message":"size","metadata":[],"receiver":{"id":"8936bd13-46e9-4497-b577-12f4c48758c0","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":53,"offset":1197},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":53,"offset":1204},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":50,"line":53,"offset":1196}}}}]},"id":"57a3e1ff-b509-4bdd-8601-f036682d4991","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"ff5afca8-8acb-4684-b3fb-7e828ff4096f","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":53,"offset":1194},"start":{"column":47,"line":53,"offset":1193}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"e5d9fc37-be27-4c98-81f7-7f70f49e3b5b","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"5808ce23-9537-4614-8826-ad439bef4ccb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":46,"line":53,"offset":1192}},"supertypes":[{"args":[],"id":"41008227-b6e2-40b5-803c-cb145d64ca31","metadata":[],"reference":{"id":"9e0d5ba1-35ca-46f2-acd4-25652a7bc4dd","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"366c67a3-73ba-4e74-88d8-64517ce5bae4","message":"any","metadata":[],"receiver":{"id":"e3cad137-5f56-4ab0-b92b-45b7aaf39f63","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":53,"offset":1188},"start":{"column":32,"line":53,"offset":1178}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}}}],"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}},"id":"f1791330-90bf-414a-a1c2-48033ecfa827","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":5,"line":53,"offset":1151}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":55,"offset":1212},"start":{"column":1,"line":49,"offset":997}},"supertypes":[{"args":[],"id":"9a16292c-4999-42be-985e-961a319e4d42","metadata":[],"reference":{"id":"218fb481-956c-4cbf-8178-785cf6b75962","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}}]},{"id":"5386944e-68bd-4f02-9d65-08569e1ba278","members":[{"body":{"id":"3572dfca-6cd5-4036-aadb-2b3f51878f20","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"de060c79-d895-47e8-81fb-100caa0b98ec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":9,"line":59,"offset":1297}},"value":{"args":[],"id":"224d7334-1df8-447d-b352-da0869da2bc1","message":"abs","metadata":[],"receiver":{"id":"aed5517f-0e15-4b20-916d-72bb6cc3baf7","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":59,"offset":1315},"start":{"column":22,"line":59,"offset":1310}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":22,"line":59,"offset":1310}}},"variable":{"id":"47135df4-06c7-4ac8-83d7-e7de30f45d56","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":59,"offset":1307},"start":{"column":9,"line":59,"offset":1297}}}}],"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":38,"line":58,"offset":1286}}},"id":"63c37fdc-af5b-4283-94e1-9554c245a6a6","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"e5999ee4-7789-414c-9651-1f3d59c76ebd","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":58,"offset":1285},"start":{"column":32,"line":58,"offset":1280}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":5,"line":58,"offset":1253}}},{"body":{"id":"ccb11970-caca-4bb3-af54-5250d1f0b2cb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"86dc9265-58ae-40ea-b6ab-32d356a817a0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"59536eff-200a-4897-9c20-6af391f3b2be","message":"eventosPar","metadata":[],"receiver":{"id":"21ae9b1e-7bb8-416d-a9a3-5bafc3ae836e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":61,"offset":1401},"start":{"column":68,"line":61,"offset":1397}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":68,"line":61,"offset":1397}}}],"id":"00f16c8a-2ffe-4bd3-b094-3ccd1dca2d57","message":"&&","metadata":[],"receiver":{"args":[],"id":"9cbda00e-64ea-43c9-a46d-3f085be08b8c","message":"intensidadElevada","metadata":[],"receiver":{"id":"c3c2e0ce-b1e5-4d3a-b3b4-00cbf179c937","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":61,"offset":1373},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":61,"offset":1393},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}}}],"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}},"id":"2917a2aa-e2fb-41e3-bc0c-8e8f5fd43948","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":5,"line":61,"offset":1334}}},{"body":{"id":"5f5a27fb-fef3-4cb6-8cb9-8786fa4b1e93","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a7afb08f-1d23-4c30-8c92-aceeb383a55c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"0b4aa69e-7655-4a29-bfe6-3d073ab4b67b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":48,"line":63,"offset":1465}},"value":0}],"id":"7fabda13-5974-4cd7-acae-e0d2eb8a3b54","message":"==","metadata":[],"receiver":{"args":[{"id":"3f495e87-c818-417c-97b0-e62c079b42ae","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":43,"line":63,"offset":1460}},"value":2}],"id":"3597189e-1788-45df-ba9c-099160af7e64","message":"%","metadata":[],"receiver":{"id":"4324a1c2-0c31-4e4d-89ee-d4adad56aba9","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":63,"offset":1459},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}}}],"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}},"id":"ade58117-eac2-45e5-a8ae-6bd2062c8136","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":5,"line":63,"offset":1422}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":65,"offset":1475},"start":{"column":1,"line":57,"offset":1216}},"supertypes":[{"args":[],"id":"40fc3064-ab85-46a8-9a0c-e849f4a5b0ae","metadata":[],"reference":{"id":"369ba2f7-8d6b-476d-9ce0-d14771613ec3","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}}]},{"id":"5db29254-bbe3-439a-bb2a-b5f16942ccff","members":[{"id":"a3fe6b7f-70a3-4580-81e9-daa3ef853a44","isConstant":true,"isProperty":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":68,"offset":1528},"start":{"column":5,"line":68,"offset":1517}},"value":{"id":"e4fd7e85-3e05-42e7-89aa-a269bbaff297","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"15d5a7ab-eec5-4a02-a399-21a8c64126c8","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d1bcc4d7-82c7-427a-80b9-b05ba3828d18","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2af3823b-41bb-441d-8f81-7ba1b8002a25","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}}}],"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}},"id":"9622a02a-75b3-4712-a2b8-9bcfcec5a467","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":5,"line":69,"offset":1534}}},{"id":"281e3d50-d9a9-43e0-a06a-47fa9dd2d69f","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":5,"line":71,"offset":1582}},"value":{"id":"bfa7d8ba-2c52-481f-9b58-9d0796d59eb9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":26,"line":71,"offset":1603}},"value":"melancolia"}},{"body":{"id":"9e340511-0c2b-46a0-ba82-64ba3cedf687","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8191d4c5-9be9-4404-9d8b-4acc90eadb45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"607aea7c-7a74-41c7-aa24-481935dc1699","message":"intensidadElevada","metadata":[],"receiver":{"id":"1fc5525e-a908-4aab-8cad-702f3e672fd2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":69,"line":72,"offset":1685},"start":{"column":65,"line":72,"offset":1681}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":65,"line":72,"offset":1681}}}],"id":"d843dec6-9936-4a2e-983e-f5b727611a22","message":"&&","metadata":[],"receiver":{"args":[{"id":"93782c6a-6ac2-44ca-be55-b9b8c1d13e0f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":49,"line":72,"offset":1665}},"value":"melancolia"}],"id":"833bbac9-b6a9-4184-a56e-bfa5033d2448","message":"!=","metadata":[],"receiver":{"id":"ade62664-d280-4e49-99f5-9bfba6a163a5","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":72,"offset":1661},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}}}],"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}},"id":"7cdb49af-5960-43a4-9182-e1e946adf015","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":5,"line":72,"offset":1621}}},{"body":{"id":"462d1218-35da-423d-9737-27268551e868","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"59b58bcd-70bd-44ab-b402-626087fbb999","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":74,"offset":1765},"start":{"column":15,"line":74,"offset":1759}}}],"id":"b68a16c9-f9e2-484a-80e5-e870e60cf108","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":74,"offset":1766},"start":{"column":9,"line":74,"offset":1753}}},{"id":"22e872ba-4b8b-456a-950a-4330dc988888","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":9,"line":75,"offset":1776}},"value":{"args":[],"id":"52c35547-1fd5-467b-bb8f-7e2ecc81dc0b","message":"descripcion","metadata":[],"receiver":{"id":"96c63610-4327-4a35-acc4-4723c4ff5bb8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":75,"offset":1790},"start":{"column":17,"line":75,"offset":1784}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":17,"line":75,"offset":1784}}},"variable":{"id":"9ac9a08d-610c-4e1f-b2d8-8f08ff0c9ad9","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":75,"offset":1781},"start":{"column":9,"line":75,"offset":1776}}}}],"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":36,"line":73,"offset":1742}}},"id":"f12b2629-cde0-4a77-8fbb-59f65f7e4033","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"c1c17a43-5b3e-411e-bc4b-a4c207cab013","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":73,"offset":1741},"start":{"column":29,"line":73,"offset":1735}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":5,"line":73,"offset":1711}}},{"body":{"id":"09d49432-be2a-42bd-9437-65614ddb26ca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3a9c820d-58b9-40f2-840b-4c2d1f42cf1a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b0341f54-01c3-45dd-a336-8950f944196b","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0d7a5694-c3c8-4d23-b80f-443c9b362b0c","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"e7afe02c-0155-492d-a08d-882914eb8f4f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d63e2dcb-8ef6-4483-9c92-925d7d58e9b3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"3d0d4e4e-1f05-47f4-9070-33453e9e8b42","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e142842a-8a24-4c5c-acfb-891b0a5a7b40","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"bf3b5e93-c3a0-4ef7-98e1-f7e838190b9b","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"8d441fcb-f942-41b3-bc49-495205021cf8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":77,"offset":1814},"start":{"column":1,"line":67,"offset":1479}},"supertypes":[{"args":[],"id":"330d4502-24b5-4b2d-bfe2-b75ea73c0766","metadata":[],"reference":{"id":"855c41d5-c53e-4897-99d0-d136f4b93455","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}}]},{"id":"e88c8506-b9b5-40ae-a0a2-8c0b2f6d871b","members":[{"body":{"id":"4d4d3aad-5ad5-4505-bdd4-bb683c8239a3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"09062965-3ab7-4b2f-a9e8-4f174587a1e7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"6472954c-22ed-44b6-b42d-acabd4ed458f","message":"intensidadElevada","metadata":[],"receiver":{"id":"4401bfd7-1773-4ec6-9a5a-f6f3dbed373f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":76,"line":80,"offset":1934},"start":{"column":72,"line":80,"offset":1930}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":72,"line":80,"offset":1930}}}],"id":"b9b05156-f384-4fbc-ac49-d9486a49d529","message":"&&","metadata":[],"receiver":{"args":[{"id":"3c197f7e-ed79-4913-9e5c-cb5652fd126c","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":58,"line":80,"offset":1916}}}],"id":"87409450-cbe2-462b-870c-eeb4a67d5bbf","message":">","metadata":[],"receiver":{"id":"70ce6e99-4957-4609-b5e5-cda6bb8808ec","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":80,"offset":1913},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}}}],"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}},"id":"194b2538-61cc-475b-8dae-391504bb82ab","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":5,"line":80,"offset":1863}}}],"metadata":[{"args":{"position":"end","text":"//Se libera si el impacto de la última emocion fue mayor al criterio de intensidad"},"name":"comment"}],"name":"DesagradoYtemor","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":81,"offset":1957},"start":{"column":1,"line":79,"offset":1818}},"supertypes":[{"args":[],"id":"2bbf123e-48d3-42a2-9a0f-de77f2c0df71","metadata":[],"reference":{"id":"44c5ffd8-5973-461f-8ba6-10f16025ad4f","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}}]},{"id":"682d5aa9-0ec4-4cde-8c3c-6f2b71aa97ae","members":[{"id":"0d0c04ed-35e9-4c4c-afe3-3d129b36bae2","isConstant":false,"isProperty":true,"metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":5,"line":85,"offset":2083}},"value":{"id":"566c7035-87e5-46dd-a721-009e0b7039eb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":29,"line":85,"offset":2107}},"value":10}},{"body":{"id":"2472623b-f6a6-4bf9-b236-0feff374b1b2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3b8e167c-6a9d-479c-819c-3b6846e766f4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"23c7da7d-86e4-454d-9e15-36621594f017","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}},"value":100}}],"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}}},"id":"56026512-4492-4b93-baba-f6ff7d2f4463","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":5,"line":86,"offset":2115}}},{"body":{"id":"d325cbfc-d9dd-4d24-b6b4-2d62d1dada6a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0321b9b-38e1-4f41-9853-570453ba2b7d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3332ce97-adf1-4f5f-9318-b1d62fc9b95f","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":52,"line":87,"offset":2192}}}],"id":"a4356997-c7e5-4b89-8aef-e4c93b4e1dba","message":">","metadata":[],"receiver":{"id":"b5965cea-d5a8-4d5e-970f-f36e310b80ae","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":87,"offset":2189},"start":{"column":41,"line":87,"offset":2181}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}}}],"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}},"id":"9835e866-4812-44c1-81fb-0a3ae4d6d53c","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":5,"line":87,"offset":2145}}},{"body":{"id":"52528b7b-106d-47fd-8705-2383d9ad96b3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"1429a272-4d63-439a-8991-457e90a6759c","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":89,"offset":2270},"start":{"column":15,"line":89,"offset":2264}}}],"id":"3a579993-ed23-4d51-9a3e-4145aa27aa3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":89,"offset":2271},"start":{"column":9,"line":89,"offset":2258}}},{"id":"cd5ab7c7-56dd-464d-8952-5c2117f08c4d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":9,"line":90,"offset":2281}},"value":{"args":[],"id":"00569e53-116c-48b6-aca0-7dfa68e97608","message":"impacto","metadata":[],"receiver":{"id":"f97fc7d9-d128-48c2-b8a5-e88ffcd4a3ae","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":90,"offset":2298},"start":{"column":20,"line":90,"offset":2292}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":20,"line":90,"offset":2292}}},"variable":{"id":"45b85425-a8c6-44a6-b4b3-eb9e34d043a9","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":90,"offset":2289},"start":{"column":9,"line":90,"offset":2281}}}}],"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":36,"line":88,"offset":2247}}},"id":"121b7047-07f2-467c-874f-90448ebeab3d","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"248b72d8-cf62-413e-a5cd-b3c1f265ac40","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":88,"offset":2246},"start":{"column":29,"line":88,"offset":2240}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":5,"line":88,"offset":2216}}},{"body":{"id":"e790c58f-5a18-4288-b168-783d6bba7295","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7a3e5b6b-709b-41e8-84a6-dc6524f98252","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b0032700-5cb8-4cb3-aa5f-19707d0d9cf2","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"f258a492-e19a-4e71-bdc4-0774a1a8da6c","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"8ebd3adf-6252-468e-a654-8dd855e1fcfb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6781e031-0171-4522-a0ce-3123639702a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ba8be2a7-00aa-4d3e-82f4-846ca01894bc","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"34e01ae0-48a5-4c78-b95c-c92e55f90f36","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"3ce1fce0-70e3-4e64-94ba-523864f8b688","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[{"id":"1aa75c46-3470-406e-87ce-1a3bfa335bf8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Especial","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":92,"offset":2318},"start":{"column":1,"line":84,"offset":2045}},"supertypes":[{"args":[],"id":"605b84b5-0168-405c-b5c3-dfe38bffdd0b","metadata":[],"reference":{"id":"242229d0-abc6-4370-b220-0150d5b47110","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}}]},{"id":"10c1df0f-10d9-4535-afbd-0ed62c059e10","members":[{"id":"36f36d99-15e5-464c-b6f2-b83ed9db15e5","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":95,"offset":2363},"start":{"column":5,"line":95,"offset":2341}},"value":{"id":"77a54c57-b6ea-471c-89a9-b86bc194b32c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8a944590-347c-4d19-a49e-e950b6e7a062","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":96,"offset":2386},"start":{"column":5,"line":96,"offset":2369}},"value":{"id":"f1bcc17b-32e8-430f-bdb4-bb2e16af92a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"0999b0e1-7c4c-4543-832e-237bd2d9267e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"36d22efd-2d55-4b65-ac47-19a54508681f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"01bcf82b-d459-4bd0-b81b-5e60bde35741","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}}}],"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}},"id":"a6d5586f-93f7-40fc-9df8-4415e13f41f5","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":5,"line":98,"offset":2394}}},{"body":{"id":"4f56af4f-c4f3-43a0-b3a3-b5535067835f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7c40abde-66c1-4eab-a59d-8b618b192904","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"df8ce49c-ed52-46ba-9f2c-a5a293a30b99","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"90f43d79-bd7b-468c-a998-1f7c663d9609","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":99,"offset":2432},"start":{"column":1,"line":94,"offset":2322}},"supertypes":[]},{"id":"9600e6fb-53cf-4eba-87c5-4cb7aca150bd","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":1,"line":101,"offset":2436}},"value":{"args":[{"id":"e1d3ee4a-cf12-4750-9846-3e13e07afad4","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":27,"line":101,"offset":2462}},"value":{"id":"964a4a90-2c2e-48f7-969f-38e7844f3685","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":35,"line":101,"offset":2470}},"value":10}},{"id":"2746225f-37ea-427c-bd6d-95be799e61fa","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":39,"line":101,"offset":2474}},"value":{"id":"ae25102a-1aa0-4078-8bae-5987fb157c12","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":53,"line":101,"offset":2488}},"value":"FLOW"}}],"id":"582a57dc-c78c-4532-90ad-22f009c9079d","instantiated":{"id":"2cd3b14b-6b09-4b9b-807a-c7e682e840da","metadata":[],"name":"Evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":101,"offset":2461},"start":{"column":20,"line":101,"offset":2455}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":16,"line":101,"offset":2451}}}},{"id":"63386881-ff44-4aa8-ad4b-8da7f68cdc85","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":102,"offset":2541},"start":{"column":1,"line":102,"offset":2497}},"value":{"args":[{"id":"21999067-11f9-435d-a3e0-54028ac22510","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":102,"offset":2540},"start":{"column":28,"line":102,"offset":2524}},"value":{"id":"86a593d6-5379-4513-a8cf-f641e8d50dfd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":102,"offset":2540},"start":{"column":39,"line":102,"offset":2535}},"value":[{"id":"d79d0179-0177-43b0-b0f1-e0d06278e71b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"74f06927-67f8-4313-b4eb-a9f039813f9f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":102,"offset":2539},"start":{"column":40,"line":102,"offset":2536}},"value":"a"}]]}}],"id":"72d0ee9b-5704-4cfb-b74a-7692691fce92","instantiated":{"id":"a401c14d-b2ed-4b2c-9110-2af737e44899","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":102,"offset":2523},"start":{"column":22,"line":102,"offset":2518}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":102,"offset":2541},"start":{"column":18,"line":102,"offset":2514}}}},{"id":"112724b3-841c-45e6-a9b3-ab9d39736b1a","isConstant":true,"metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2585},"start":{"column":1,"line":103,"offset":2543}},"value":{"args":[{"id":"e81a0a07-856c-4d82-a271-041f7ec32839","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2584},"start":{"column":30,"line":103,"offset":2572}},"value":{"id":"b8c27e75-854c-49d0-89b1-5011108f606b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2584},"start":{"column":41,"line":103,"offset":2583}},"value":1}}],"id":"8282c2bf-f86a-4499-aba5-9f11b39aa195","instantiated":{"id":"7e64edc2-88fa-480d-8150-a4d240fb7c36","metadata":[],"name":"Alegria","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":103,"offset":2571},"start":{"column":22,"line":103,"offset":2564}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2585},"start":{"column":18,"line":103,"offset":2560}}}},{"id":"367d0b0b-2b77-4ebb-9e8f-570d7c7d7ca8","isConstant":true,"metadata":[],"name":"emocion3","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":104,"offset":2644},"start":{"column":1,"line":104,"offset":2587}},"value":{"args":[{"id":"41e77472-5649-449d-b9cf-edbc785218d6","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":104,"offset":2643},"start":{"column":28,"line":104,"offset":2614}},"value":{"id":"8f36111a-859c-4327-bb5c-25d84e8f41cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":104,"offset":2643},"start":{"column":39,"line":104,"offset":2625}},"value":[{"id":"bff9d717-83d7-4f0f-a1cb-bc506ba13131","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"4180e3ff-9c46-4377-bdf6-623e488e66cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":104,"offset":2642},"start":{"column":40,"line":104,"offset":2626}},"value":"AAAAAAAAAAAAAA"}]]}}],"id":"fbd5e69c-5cf2-415f-a694-39a63a0794b2","instantiated":{"id":"0b93ae9f-7fad-473c-bd4f-edc7e8fef38f","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":104,"offset":2613},"start":{"column":22,"line":104,"offset":2608}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":104,"offset":2644},"start":{"column":18,"line":104,"offset":2604}}}},{"id":"0b5d0a38-fec2-469f-8a93-f03645ecd74e","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2711},"start":{"column":1,"line":105,"offset":2646}},"value":{"args":[{"id":"9f8ee2a5-7448-482b-87c4-e4bf9431d73a","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2679},"start":{"column":28,"line":105,"offset":2673}},"value":{"id":"96d0c9ad-8daf-4105-acf5-e1207a52ec5b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2679},"start":{"column":33,"line":105,"offset":2678}},"value":2}},{"id":"e5c5136b-4538-4c79-ba6d-cf34b9694d3c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2710},"start":{"column":36,"line":105,"offset":2681}},"value":{"id":"b5d3cc48-ed4a-4cb6-84e2-f94641a5a8ff","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2710},"start":{"column":46,"line":105,"offset":2691}},"value":[{"id":"cd363018-c34e-4459-a778-ec7790bb92ce","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"83672c34-2204-4bae-98e9-5c6d49e22461","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":105,"offset":2700},"start":{"column":47,"line":105,"offset":2692}}},{"id":"12fe9de2-9f19-4f37-bbc3-fe9818c1e00b","metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":105,"offset":2709},"start":{"column":56,"line":105,"offset":2701}}}]]}}],"id":"27e871ca-8ae0-4c82-a48f-36373e2c8ee6","instantiated":{"id":"10300e34-c190-4a62-a554-db7d401d1b00","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":105,"offset":2671},"start":{"column":19,"line":105,"offset":2664}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2711},"start":{"column":15,"line":105,"offset":2660}}}},{"id":"a76a319c-12e6-47c6-905c-010687b91459","isConstant":true,"metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2731},"start":{"column":1,"line":106,"offset":2713}},"value":{"id":"33ca82e9-cb47-4b45-a710-ed5d47e03cd1","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2731},"start":{"column":16,"line":106,"offset":2728}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":58,"line":106,"offset":2770},"start":{"column":20,"line":106,"offset":2732}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:04:51.036Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"763332a2-08ac-44dd-b6bc-09d7095a22f9","imports":[],"members":[{"id":"fda71cb1-93d1-4ef4-9a72-704d6be191c5","members":[{"id":"41e2ed92-576c-481e-8593-755a3804faf0","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"e8fdcaf3-5c8a-4ee7-a2ea-ccb11c5ae316","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8ed66fa9-95ed-40dd-a787-732b138cb954","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"1322b5e1-f21f-41fc-a9af-97f0c9a354e1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"98a678f0-f9c4-4717-a6f3-c0feeed6731b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"a72d0222-c7c2-4785-8c49-7c460df2ab4e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"350fab84-27b6-4daf-9f39-09651cc7c138","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"bc0acb44-d114-441b-b85c-49ab2570cd41","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"16043620-8074-4dcf-99cf-e45f34d746e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"f23515f2-f84f-45fe-84a8-5344eb148a72","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"c0a46a99-95bc-46b1-827c-cc5f42639fa9","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"6b35205b-fa03-4758-a2fc-cf1ee307bfaf","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"55db81b6-e17c-4f90-aad0-08ec983c2412","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bcc490e5-b175-44f4-9b21-a97a492a255e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"a0132561-34fa-49f4-aae0-a9313f925739","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"1a3f3dd8-1175-471f-a710-e1368cb13d46","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"ff9c85c3-4227-4b6a-b6c9-b240fe8c1163","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"3e7e1b9b-c1d2-46ab-981f-37014a48be72","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"b0244adb-5f61-4161-8f0f-2717bfda0703","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"59b84927-8b51-4c0f-a9d9-482e4ce89981","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bf01b49e-a4ec-48d8-9bd6-1630465a1245","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"2f599ed9-299b-4009-bf61-07220cbc6aae","members":[{"body":{"id":"ddd7d89b-5404-4427-a3c8-8c0205a26673","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0ada8c1-ba93-4621-97a8-8b598e6b21e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"2e87545d-40d3-49b7-a150-018eea618bdb","message":"puedeLiberarse","metadata":[],"receiver":{"id":"fc5b03cd-a5de-48bf-91b5-88b7a3676047","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"76c2f8e4-6f84-4ded-9795-641832a6a386","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"5fc8a798-0e8b-452f-81fc-0b157a05669e","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"e4f9d058-2e44-4721-b584-ff01b718fc21","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"3fba6925-bc0a-4f18-9473-bb7f42aae45d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"ea2809bf-dc9f-42d7-8050-737c930cd070","metadata":[],"reference":{"id":"69ecd452-8d47-414c-a340-38633095379f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"a3e174fb-f660-4632-893e-a308104052d5","message":"all","metadata":[{"args":{"position":"end","text":"//4 "},"name":"comment"}],"receiver":{"id":"1bcd7462-3c3f-485d-8b47-d3e985f7b8f8","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":28,"line":13,"offset":218}}},"id":"6f24397e-ec06-4e28-bf5d-2899ea36870f","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"32500773-4ae8-4a7d-841c-0aa245529b13","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ab812634-e265-4935-a70e-81d63d251580","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":5,"line":17,"offset":301}},"value":{"args":[{"id":"d2786d39-b2df-4713-b34b-194afb369297","members":[{"body":{"id":"c380bc18-15c6-445c-9fed-40246f7e1913","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"69f914a8-21b8-4093-a00b-93ef51dd90b6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"a33c6b6f-a047-402f-9e0e-a3bb13129d31","message":"liberar","metadata":[],"receiver":{"id":"3d3016f6-66fd-4aeb-b6ca-8e5728259997","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":17,"offset":335},"start":{"column":38,"line":17,"offset":334}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":17,"offset":345},"start":{"column":38,"line":17,"offset":334}}}}]},"id":"3ba6000c-deb1-4cb8-acbc-776377e98c7d","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"3d02a406-5873-4ad3-8e2b-50a1e05fb806","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":17,"offset":330},"start":{"column":33,"line":17,"offset":329}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"dfa56203-45d3-42fb-9c6f-d37024578616","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"9f3d5800-622b-40db-895b-1a9f5073f915","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":17,"offset":347},"start":{"column":31,"line":17,"offset":327}},"supertypes":[{"args":[],"id":"343332c9-fdbd-414d-b4b4-b08fa189f620","metadata":[],"reference":{"id":"3c256569-2146-4268-aae1-022be842011e","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"4eff7ef9-0e88-43d8-abb9-bb3eb587c696","message":"map","metadata":[],"receiver":{"id":"6bad0775-9ea9-47c5-8ded-4c79177d192b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":17,"offset":322},"start":{"column":17,"line":17,"offset":313}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":17,"line":17,"offset":313}}},"variable":{"id":"53093391-78bc-44c2-88a3-be4da7bd290b","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":17,"offset":310},"start":{"column":5,"line":17,"offset":301}}}}],"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":24,"line":16,"offset":294}}},"id":"e48f7e72-576e-4ede-997c-9e4c0b92961c","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":3,"line":16,"offset":273}}}],"metadata":[{"args":{"position":"end","text":"//6"},"name":"comment"}],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":19,"offset":356},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"8ed3d2ba-de10-46a6-9be7-3652f0552ae8","members":[{"id":"eb3043c5-fdf7-4539-a709-3202b0408342","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":5,"line":23,"offset":384}},"value":{"id":"3f77a5a4-06b5-403b-9412-27eca634fc45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":23,"offset":416},"start":{"column":23,"line":23,"offset":402}},"value":[{"id":"2ba632d0-f44b-4022-978c-c3806c5a2167","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"e27f9163-7840-4f11-b4ce-935b91cf8526","metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":23,"offset":408},"start":{"column":24,"line":23,"offset":403}}},{"id":"d959ab8d-0d71-4a0e-bce8-73744b7d06f1","metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":23,"offset":415},"start":{"column":30,"line":23,"offset":409}}}]]}},{"body":{"id":"6b0a9029-f1a9-4f3f-87fc-2ea2cf311be2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"77599962-d11a-41df-90dc-46ac6b7fdbca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"af0dc60f-7c2e-406f-93fc-de0205fe7560","members":[{"body":{"id":"1e7b2f1c-b920-470b-9cc0-5a336794cf4c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"570cab4f-27a0-4241-a11c-ae4ac8b903e6","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"4cd73d3d-beb9-403c-8adc-954dbf33b5a7","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":77,"line":25,"offset":496},"start":{"column":71,"line":25,"offset":490}}}],"id":"72009724-d86a-4980-a59b-a612e28bd04c","message":"hacerEvento","metadata":[],"receiver":{"id":"53ef6866-6592-48f1-8011-167d1441573c","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":25,"offset":477},"start":{"column":57,"line":25,"offset":476}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":78,"line":25,"offset":497},"start":{"column":57,"line":25,"offset":476}}}}]},"id":"a014a491-1e00-4463-b653-c03c331ee965","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"e190ef73-180b-4e87-bca9-5022310cdd90","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":25,"offset":474},"start":{"column":54,"line":25,"offset":473}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"107398f2-c618-4a48-b80e-8e9cbb0e2220","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"b84c4ac5-66e6-451b-a6b9-d4ff23371f76","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.hacerEvento(evento)}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":79,"line":25,"offset":498},"start":{"column":53,"line":25,"offset":472}},"supertypes":[{"args":[],"id":"62fe8ca6-086b-4891-a209-5f4921b26e5e","metadata":[],"reference":{"id":"75699c36-acbc-4941-950e-7d3910ebafbc","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"5563c8b8-5b39-4acb-9b61-5dd83bdfe09b","message":"forEach","metadata":[],"receiver":{"id":"71a6d4f0-b793-4884-b598-8ec0aeb65843","metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":25,"offset":463},"start":{"column":33,"line":25,"offset":452}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}}}],"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":33,"line":25,"offset":452}}},"id":"b4b93721-0c7b-4fec-9ca4-af41a679c285","isOverride":false,"metadata":[],"name":"vivirEvento","parameters":[{"id":"90cc3075-c741-40a3-b19f-14b8c4a2e733","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":25,"offset":449},"start":{"column":24,"line":25,"offset":443}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":25,"offset":499},"start":{"column":5,"line":25,"offset":424}}}],"metadata":[],"name":"grupo","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":26,"offset":502},"start":{"column":1,"line":22,"offset":365}},"supertypes":[]},{"id":"13aa86b1-c3ee-4f5e-8f4f-9b90e0357c9c","members":[{"id":"6653da5d-c026-485f-b2b3-c5063324169d","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":5,"line":29,"offset":527}},"value":{"id":"ee14151f-dfb5-4975-9886-b46f315ee44b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":29,"offset":556},"start":{"column":31,"line":29,"offset":553}},"value":100}},{"id":"4cb8a9bf-194a-4f8f-8158-9c227d70ae65","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":5,"line":30,"offset":562}},"value":{"id":"2853b552-9c00-4d46-9047-5cf15a8e9b4f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":30,"offset":594},"start":{"column":36,"line":30,"offset":593}},"value":0}},{"id":"4f14d96a-5969-4408-bff4-8f8578c2357a","isConstant":true,"isProperty":true,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":5,"line":31,"offset":600}},"value":{"id":"e6d57e8d-9dc6-4def-bdd5-fe44f3266018","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":31,"offset":637},"start":{"column":41,"line":31,"offset":636}},"value":5}},{"body":{"id":"eed70581-7acb-4a9d-8ffa-5ff25c1d8482","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"504fa572-00ed-4b57-bcf4-9a685afb5245","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"31fd59ef-1123-4014-b619-612d677d171b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}},"value":true}}],"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":29,"line":34,"offset":730}}},"id":"1c10f7a1-bd6a-4ba9-abf5-4f5f6e9f1dd2","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":34,"offset":734},"start":{"column":3,"line":34,"offset":704}}},{"body":{"id":"7f366087-e16e-4a1c-b259-dd3f5d75acae","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"bdf753f6-0add-4fc3-96c0-ed49a97a923c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2d50a5b9-4a81-477d-bdf7-7e9b1ed476ef","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}}}],"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":40,"line":36,"offset":777}}},"id":"92f24ec7-caa8-4da7-bcf3-cbaeddae1974","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[{"id":"48c2bf0b-22cc-4f7d-83bf-0e7b883dd559","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":36,"offset":773},"start":{"column":31,"line":36,"offset":768}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":782},"start":{"column":5,"line":36,"offset":742}}},{"body":{"id":"6a0a3fc4-ca7d-4b08-b177-ed0a43d9a04b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"62b8b98a-9228-48ae-856f-a4a22dc8c54f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":5,"line":39,"offset":818}},"value":{"args":[],"id":"3d3305f9-3149-465f-a1b4-1f54b033560c","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"28e1cb38-6199-47a7-b46f-53bba3d8d23d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":24,"line":39,"offset":837}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":838},"start":{"column":22,"line":39,"offset":835}}},"variable":{"id":"429a90d2-d3c2-42be-ab9d-170206e2241c","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":39,"offset":833},"start":{"column":5,"line":39,"offset":818}}}},{"condition":{"args":[],"id":"3d607ad5-0334-407e-bd7e-62a70c404ded","message":"puedeLiberarse","metadata":[],"receiver":{"id":"e1173ea3-2664-47da-9982-f8ca00b7b714","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":40,"offset":851},"start":{"column":8,"line":40,"offset":847}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":868},"start":{"column":8,"line":40,"offset":847}}},"elseBody":{"id":"a0494979-1492-4336-afdd-c58ac8ee4bad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"1080c6cf-83a6-43c5-87cc-bc353dd8172c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":5,"line":40,"offset":844}},"thenBody":{"id":"782b98d4-a832-4f35-a6e1-de16ad57542c","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2075d1af-a4cd-415c-ae87-f24c4479f433","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":9,"line":41,"offset":880}},"value":{"args":[{"args":[],"id":"8a18a239-3972-49d3-9200-fddf504471dc","message":"impacto","metadata":[],"receiver":{"id":"f390bdca-23e5-4b53-ac19-3118cde131a3","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":41,"offset":900},"start":{"column":23,"line":41,"offset":894}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":910},"start":{"column":23,"line":41,"offset":894}}}],"id":"0d602ddc-687d-4956-87b4-a8281aaf94d4","message":"-","metadata":[],"receiver":{"id":"9cd3684e-8e6c-4fdd-b22a-859ab413f616","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"96ba8ebb-cd8d-4ea8-a24c-256d7fe699fb","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":890},"start":{"column":9,"line":41,"offset":880}}}}],"sourceMap":{"end":{"column":6,"line":42,"offset":917},"start":{"column":30,"line":40,"offset":869}}}}],"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":26,"line":38,"offset":811}}},"id":"66699e68-769d-4528-9ac3-d2139c017bd6","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"d259f709-da72-47b1-8d0e-02bc14343bdb","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":809},"start":{"column":18,"line":38,"offset":803}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":43,"offset":922},"start":{"column":3,"line":38,"offset":788}}},{"body":{"id":"fb2a8d20-58c5-4b39-9997-40102b2bad5b","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4d68f226-3b0d-4ca7-b1e6-78d7344f830b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"e7195e1d-29fb-434e-ab69-655068de3a87","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":45,"line":45,"offset":970}}}],"id":"6d78f90b-9fa8-432c-9a9a-2b1b2acf5b02","message":">","metadata":[],"receiver":{"id":"936f7129-8491-4b23-9f3e-adade72b4957","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":45,"offset":969},"start":{"column":34,"line":45,"offset":959}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}}}],"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":34,"line":45,"offset":959}}},"id":"3230b451-be0a-41a2-a062-54e55b48f71f","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":988},"start":{"column":5,"line":45,"offset":930}}},{"body":{"id":"c5b3e60c-75f3-4541-922e-83572b6da848","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e7067487-a793-4f06-b98b-32d965b64614","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"240b3d05-25bb-44b3-9c91-62bdd43747c2","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"ef050e4e-e607-4a7a-bcd6-5f12a7b4de59","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"90521c6e-1686-4ca6-a781-2b1807323a2b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"760cf356-4fbf-4e3d-a76d-119fdef99a50","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1b395f9b-8c83-4977-80de-def1dd091447","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"47fad951-f2a7-4da0-863f-2c633014155c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"514671a0-33b5-4b8a-94c1-ba68344c6c0d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"90c07a25-4bc8-4fd8-8015-b7eb5a3b04d5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"1da6fafe-e8f7-4577-bc5b-a51647d2c633","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"431e842e-d793-4f1e-9287-d2d8d3187ffb","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"c16e3d05-012f-4deb-b570-21af08ae4dee","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7e57a05a-480e-4f96-807a-cd7c39e5d977","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"056f7de8-2834-441d-b8cd-2dd7bfa277c4","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"38269a6d-6d00-470f-b09a-a9e473d69466","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"72d3003c-dec1-4727-beb7-07629484c1fc","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"77f30483-2f2c-4d8b-b679-8c48c84efda8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"20e2ae0b-d073-4119-9cbf-2ead1c820309","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8e6c7dc1-5b00-4b4a-9456-b4df6d2d651b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"76567582-7024-41ec-bde5-b1b9250f6d10","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"4a81d861-c93f-4b93-88f7-d9bde8d0b038","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"8d87afa8-d9ce-4cbf-a212-3fab9f48e07c","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"1ea13900-8125-43f0-b22d-e74a7ce657c4","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":47,"offset":993},"start":{"column":1,"line":27,"offset":504}},"supertypes":[]},{"id":"7c925fd5-6c66-4443-8aad-f092988b8689","members":[{"id":"03c9cd06-7dfb-4abf-bba3-9ba4917c10c0","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":5,"line":50,"offset":1032}},"value":{"id":"f860d406-48d4-4c3a-a20d-2f79f7905558","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1051},"start":{"column":22,"line":50,"offset":1049}},"value":[{"id":"333323fd-18cb-44bd-90a0-369144c692b1","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"2ba3171d-b070-4342-9dc8-e994785caa48","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"029e3563-0a71-4292-a509-c5ce2268e5e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"99e9c436-fb91-437e-826c-ba04789f7724","message":"intensidadElevada","metadata":[],"receiver":{"id":"add3f093-5e16-44f1-a6ce-c7fc22680d8c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":52,"offset":1125},"start":{"column":67,"line":52,"offset":1121}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":67,"line":52,"offset":1121}}}],"id":"67598e63-94b9-42df-9336-a9491b020c5b","message":"and","metadata":[],"receiver":{"args":[],"id":"8da4877a-5985-47ac-8a3c-9f8f3d29d0a4","message":"tienePalabrota7","metadata":[],"receiver":{"id":"508de8b9-9996-4bdf-92e6-e479b94fed5f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":52,"offset":1098},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":52,"offset":1116},"start":{"column":40,"line":52,"offset":1094}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}}}],"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":40,"line":52,"offset":1094}}},"id":"a022f2fe-4ee7-49e3-9994-5bff64c76862","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1145},"start":{"column":5,"line":52,"offset":1059}}},{"body":{"id":"9646278e-9817-4825-90b6-17e86e9873ee","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"48e65b34-cb90-4c1e-822b-696249b93cad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"55a5bf21-f2b5-4494-9fab-cca59c68eb46","members":[{"body":{"id":"4f88e051-5497-40ea-9396-938fa288ec38","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"525776b5-0a37-459a-97ad-9463dbdd335c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"ca3c1cca-aa85-46ce-b994-fc48208b765d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":59,"line":53,"offset":1205}},"value":7}],"id":"eb605dc9-9954-4107-84da-02fd9a01734f","message":">","metadata":[],"receiver":{"args":[],"id":"3dbf52d9-6bb2-43fe-b6c9-675d07c28e3a","message":"size","metadata":[],"receiver":{"id":"8936bd13-46e9-4497-b577-12f4c48758c0","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":53,"offset":1197},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":53,"offset":1204},"start":{"column":50,"line":53,"offset":1196}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1206},"start":{"column":50,"line":53,"offset":1196}}}}]},"id":"57a3e1ff-b509-4bdd-8601-f036682d4991","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"ff5afca8-8acb-4684-b3fb-7e828ff4096f","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":53,"offset":1194},"start":{"column":47,"line":53,"offset":1193}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"e5d9fc37-be27-4c98-81f7-7f70f49e3b5b","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"5808ce23-9537-4614-8826-ad439bef4ccb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":46,"line":53,"offset":1192}},"supertypes":[{"args":[],"id":"41008227-b6e2-40b5-803c-cb145d64ca31","metadata":[],"reference":{"id":"9e0d5ba1-35ca-46f2-acd4-25652a7bc4dd","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"366c67a3-73ba-4e74-88d8-64517ce5bae4","message":"any","metadata":[],"receiver":{"id":"e3cad137-5f56-4ab0-b92b-45b7aaf39f63","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":53,"offset":1188},"start":{"column":32,"line":53,"offset":1178}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}}}],"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":32,"line":53,"offset":1178}}},"id":"f1791330-90bf-414a-a1c2-48033ecfa827","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1207},"start":{"column":5,"line":53,"offset":1151}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":55,"offset":1212},"start":{"column":1,"line":49,"offset":997}},"supertypes":[{"args":[],"id":"9a16292c-4999-42be-985e-961a319e4d42","metadata":[],"reference":{"id":"218fb481-956c-4cbf-8178-785cf6b75962","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1025},"start":{"column":22,"line":49,"offset":1018}}}]},{"id":"5386944e-68bd-4f02-9d65-08569e1ba278","members":[{"body":{"id":"3572dfca-6cd5-4036-aadb-2b3f51878f20","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"de060c79-d895-47e8-81fb-100caa0b98ec","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":9,"line":59,"offset":1297}},"value":{"args":[],"id":"224d7334-1df8-447d-b352-da0869da2bc1","message":"abs","metadata":[],"receiver":{"id":"aed5517f-0e15-4b20-916d-72bb6cc3baf7","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":59,"offset":1315},"start":{"column":22,"line":59,"offset":1310}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1321},"start":{"column":22,"line":59,"offset":1310}}},"variable":{"id":"47135df4-06c7-4ac8-83d7-e7de30f45d56","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":59,"offset":1307},"start":{"column":9,"line":59,"offset":1297}}}}],"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":38,"line":58,"offset":1286}}},"id":"63c37fdc-af5b-4283-94e1-9554c245a6a6","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"e5999ee4-7789-414c-9651-1f3d59c76ebd","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":58,"offset":1285},"start":{"column":32,"line":58,"offset":1280}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":60,"offset":1328},"start":{"column":5,"line":58,"offset":1253}}},{"body":{"id":"ccb11970-caca-4bb3-af54-5250d1f0b2cb","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"86dc9265-58ae-40ea-b6ab-32d356a817a0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"59536eff-200a-4897-9c20-6af391f3b2be","message":"eventosPar","metadata":[],"receiver":{"id":"21ae9b1e-7bb8-416d-a9a3-5bafc3ae836e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":61,"offset":1401},"start":{"column":68,"line":61,"offset":1397}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":68,"line":61,"offset":1397}}}],"id":"00f16c8a-2ffe-4bd3-b094-3ccd1dca2d57","message":"&&","metadata":[],"receiver":{"args":[],"id":"9cbda00e-64ea-43c9-a46d-3f085be08b8c","message":"intensidadElevada","metadata":[],"receiver":{"id":"c3c2e0ce-b1e5-4d3a-b3b4-00cbf179c937","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":61,"offset":1373},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":61,"offset":1393},"start":{"column":40,"line":61,"offset":1369}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}}}],"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":40,"line":61,"offset":1369}}},"id":"2917a2aa-e2fb-41e3-bc0c-8e8f5fd43948","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1414},"start":{"column":5,"line":61,"offset":1334}}},{"body":{"id":"5f5a27fb-fef3-4cb6-8cb9-8786fa4b1e93","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a7afb08f-1d23-4c30-8c92-aceeb383a55c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"0b4aa69e-7655-4a29-bfe6-3d073ab4b67b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":48,"line":63,"offset":1465}},"value":0}],"id":"7fabda13-5974-4cd7-acae-e0d2eb8a3b54","message":"==","metadata":[],"receiver":{"args":[{"id":"3f495e87-c818-417c-97b0-e62c079b42ae","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":43,"line":63,"offset":1460}},"value":2}],"id":"3597189e-1788-45df-ba9c-099160af7e64","message":"%","metadata":[],"receiver":{"id":"4324a1c2-0c31-4e4d-89ee-d4adad56aba9","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":63,"offset":1459},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1461},"start":{"column":27,"line":63,"offset":1444}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}}}],"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":27,"line":63,"offset":1444}}},"id":"ade58117-eac2-45e5-a8ae-6bd2062c8136","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1466},"start":{"column":5,"line":63,"offset":1422}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":65,"offset":1475},"start":{"column":1,"line":57,"offset":1216}},"supertypes":[{"args":[],"id":"40fc3064-ab85-46a8-9a0c-e849f4a5b0ae","metadata":[],"reference":{"id":"369ba2f7-8d6b-476d-9ce0-d14771613ec3","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1246},"start":{"column":24,"line":57,"offset":1239}}}]},{"id":"5db29254-bbe3-439a-bb2a-b5f16942ccff","members":[{"id":"a3fe6b7f-70a3-4580-81e9-daa3ef853a44","isConstant":true,"isProperty":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":68,"offset":1528},"start":{"column":5,"line":68,"offset":1517}},"value":{"id":"e4fd7e85-3e05-42e7-89aa-a269bbaff297","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"15d5a7ab-eec5-4a02-a399-21a8c64126c8","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d1bcc4d7-82c7-427a-80b9-b05ba3828d18","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2af3823b-41bb-441d-8f81-7ba1b8002a25","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}}}],"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":36,"line":69,"offset":1565}}},"id":"9622a02a-75b3-4712-a2b8-9bcfcec5a467","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1570},"start":{"column":5,"line":69,"offset":1534}}},{"id":"281e3d50-d9a9-43e0-a06a-47fa9dd2d69f","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":5,"line":71,"offset":1582}},"value":{"id":"bfa7d8ba-2c52-481f-9b58-9d0796d59eb9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1615},"start":{"column":26,"line":71,"offset":1603}},"value":"melancolia"}},{"body":{"id":"9e340511-0c2b-46a0-ba82-64ba3cedf687","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8191d4c5-9be9-4404-9d8b-4acc90eadb45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"607aea7c-7a74-41c7-aa24-481935dc1699","message":"intensidadElevada","metadata":[],"receiver":{"id":"1fc5525e-a908-4aab-8cad-702f3e672fd2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":69,"line":72,"offset":1685},"start":{"column":65,"line":72,"offset":1681}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":65,"line":72,"offset":1681}}}],"id":"d843dec6-9936-4a2e-983e-f5b727611a22","message":"&&","metadata":[],"receiver":{"args":[{"id":"93782c6a-6ac2-44ca-be55-b9b8c1d13e0f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":49,"line":72,"offset":1665}},"value":"melancolia"}],"id":"833bbac9-b6a9-4184-a56e-bfa5033d2448","message":"!=","metadata":[],"receiver":{"id":"ade62664-d280-4e49-99f5-9bfba6a163a5","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":72,"offset":1661},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1677},"start":{"column":40,"line":72,"offset":1656}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}}}],"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":40,"line":72,"offset":1656}}},"id":"7cdb49af-5960-43a4-9182-e1e946adf015","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1705},"start":{"column":5,"line":72,"offset":1621}}},{"body":{"id":"462d1218-35da-423d-9737-27268551e868","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"59b58bcd-70bd-44ab-b402-626087fbb999","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":74,"offset":1765},"start":{"column":15,"line":74,"offset":1759}}}],"id":"b68a16c9-f9e2-484a-80e5-e870e60cf108","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":74,"offset":1766},"start":{"column":9,"line":74,"offset":1753}}},{"id":"22e872ba-4b8b-456a-950a-4330dc988888","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":9,"line":75,"offset":1776}},"value":{"args":[],"id":"52c35547-1fd5-467b-bb8f-7e2ecc81dc0b","message":"descripcion","metadata":[],"receiver":{"id":"96c63610-4327-4a35-acc4-4723c4ff5bb8","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":75,"offset":1790},"start":{"column":17,"line":75,"offset":1784}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1804},"start":{"column":17,"line":75,"offset":1784}}},"variable":{"id":"9ac9a08d-610c-4e1f-b2d8-8f08ff0c9ad9","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":75,"offset":1781},"start":{"column":9,"line":75,"offset":1776}}}}],"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":36,"line":73,"offset":1742}}},"id":"f12b2629-cde0-4a77-8fbb-59f65f7e4033","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"c1c17a43-5b3e-411e-bc4b-a4c207cab013","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":73,"offset":1741},"start":{"column":29,"line":73,"offset":1735}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":76,"offset":1811},"start":{"column":5,"line":73,"offset":1711}}},{"body":{"id":"09d49432-be2a-42bd-9437-65614ddb26ca","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3a9c820d-58b9-40f2-840b-4c2d1f42cf1a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b0341f54-01c3-45dd-a336-8950f944196b","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"0d7a5694-c3c8-4d23-b80f-443c9b362b0c","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"e7afe02c-0155-492d-a08d-882914eb8f4f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d63e2dcb-8ef6-4483-9c92-925d7d58e9b3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"3d0d4e4e-1f05-47f4-9070-33453e9e8b42","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e142842a-8a24-4c5c-acfb-891b0a5a7b40","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"bf3b5e93-c3a0-4ef7-98e1-f7e838190b9b","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"8d441fcb-f942-41b3-bc49-495205021cf8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":77,"offset":1814},"start":{"column":1,"line":67,"offset":1479}},"supertypes":[{"args":[],"id":"330d4502-24b5-4b2d-bfe2-b75ea73c0766","metadata":[],"reference":{"id":"855c41d5-c53e-4897-99d0-d136f4b93455","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1510},"start":{"column":25,"line":67,"offset":1503}}}]},{"id":"e88c8506-b9b5-40ae-a0a2-8c0b2f6d871b","members":[{"body":{"id":"4d4d3aad-5ad5-4505-bdd4-bb683c8239a3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"09062965-3ab7-4b2f-a9e8-4f174587a1e7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"6472954c-22ed-44b6-b42d-acabd4ed458f","message":"intensidadElevada","metadata":[],"receiver":{"id":"4401bfd7-1773-4ec6-9a5a-f6f3dbed373f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":76,"line":80,"offset":1934},"start":{"column":72,"line":80,"offset":1930}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":72,"line":80,"offset":1930}}}],"id":"b9b05156-f384-4fbc-ac49-d9486a49d529","message":"&&","metadata":[],"receiver":{"args":[{"id":"3c197f7e-ed79-4913-9e5c-cb5652fd126c","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":58,"line":80,"offset":1916}}}],"id":"87409450-cbe2-462b-870c-eeb4a67d5bbf","message":">","metadata":[],"receiver":{"id":"70ce6e99-4957-4609-b5e5-cda6bb8808ec","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":80,"offset":1913},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1926},"start":{"column":40,"line":80,"offset":1898}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}}}],"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":40,"line":80,"offset":1898}}},"id":"194b2538-61cc-475b-8dae-391504bb82ab","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1954},"start":{"column":5,"line":80,"offset":1863}}}],"metadata":[{"args":{"position":"end","text":"//Se libera si el impacto de la última emocion fue mayor al criterio de intensidad"},"name":"comment"}],"name":"DesagradoYtemor","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":81,"offset":1957},"start":{"column":1,"line":79,"offset":1818}},"supertypes":[{"args":[],"id":"2bbf123e-48d3-42a2-9a0f-de77f2c0df71","metadata":[],"reference":{"id":"44c5ffd8-5973-461f-8ba6-10f16025ad4f","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1856},"start":{"column":32,"line":79,"offset":1849}}}]},{"id":"682d5aa9-0ec4-4cde-8c3c-6f2b71aa97ae","members":[{"id":"0d0c04ed-35e9-4c4c-afe3-3d129b36bae2","isConstant":false,"isProperty":true,"metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":5,"line":85,"offset":2083}},"value":{"id":"566c7035-87e5-46dd-a721-009e0b7039eb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2109},"start":{"column":29,"line":85,"offset":2107}},"value":10}},{"body":{"id":"2472623b-f6a6-4bf9-b236-0feff374b1b2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"3b8e167c-6a9d-479c-819c-3b6846e766f4","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"23c7da7d-86e4-454d-9e15-36621594f017","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}},"value":100}}],"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":26,"line":86,"offset":2136}}},"id":"56026512-4492-4b93-baba-f6ff7d2f4463","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2139},"start":{"column":5,"line":86,"offset":2115}}},{"body":{"id":"d325cbfc-d9dd-4d24-b6b4-2d62d1dada6a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"d0321b9b-38e1-4f41-9853-570453ba2b7d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"3332ce97-adf1-4f5f-9318-b1d62fc9b95f","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":52,"line":87,"offset":2192}}}],"id":"a4356997-c7e5-4b89-8aef-e4c93b4e1dba","message":">","metadata":[],"receiver":{"id":"b5965cea-d5a8-4d5e-970f-f36e310b80ae","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":87,"offset":2189},"start":{"column":41,"line":87,"offset":2181}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}}}],"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":41,"line":87,"offset":2181}}},"id":"9835e866-4812-44c1-81fb-0a3ae4d6d53c","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2210},"start":{"column":5,"line":87,"offset":2145}}},{"body":{"id":"52528b7b-106d-47fd-8705-2383d9ad96b3","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"1429a272-4d63-439a-8991-457e90a6759c","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":89,"offset":2270},"start":{"column":15,"line":89,"offset":2264}}}],"id":"3a579993-ed23-4d51-9a3e-4145aa27aa3f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":89,"offset":2271},"start":{"column":9,"line":89,"offset":2258}}},{"id":"cd5ab7c7-56dd-464d-8952-5c2117f08c4d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":9,"line":90,"offset":2281}},"value":{"args":[],"id":"00569e53-116c-48b6-aca0-7dfa68e97608","message":"impacto","metadata":[],"receiver":{"id":"f97fc7d9-d128-48c2-b8a5-e88ffcd4a3ae","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":90,"offset":2298},"start":{"column":20,"line":90,"offset":2292}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2308},"start":{"column":20,"line":90,"offset":2292}}},"variable":{"id":"45b85425-a8c6-44a6-b4b3-eb9e34d043a9","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":90,"offset":2289},"start":{"column":9,"line":90,"offset":2281}}}}],"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":36,"line":88,"offset":2247}}},"id":"121b7047-07f2-467c-874f-90448ebeab3d","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"248b72d8-cf62-413e-a5cd-b3c1f265ac40","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":88,"offset":2246},"start":{"column":29,"line":88,"offset":2240}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":91,"offset":2315},"start":{"column":5,"line":88,"offset":2216}}},{"body":{"id":"e790c58f-5a18-4288-b168-783d6bba7295","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7a3e5b6b-709b-41e8-84a6-dc6524f98252","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"b0032700-5cb8-4cb3-aa5f-19707d0d9cf2","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"f258a492-e19a-4e71-bdc4-0774a1a8da6c","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"8ebd3adf-6252-468e-a654-8dd855e1fcfb","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6781e031-0171-4522-a0ce-3123639702a3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ba8be2a7-00aa-4d3e-82f4-846ca01894bc","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"34e01ae0-48a5-4c78-b95c-c92e55f90f36","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"3ce1fce0-70e3-4e64-94ba-523864f8b688","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[{"id":"1aa75c46-3470-406e-87ce-1a3bfa335bf8","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Especial","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":92,"offset":2318},"start":{"column":1,"line":84,"offset":2045}},"supertypes":[{"args":[],"id":"605b84b5-0168-405c-b5c3-dfe38bffdd0b","metadata":[],"reference":{"id":"242229d0-abc6-4370-b220-0150d5b47110","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2076},"start":{"column":25,"line":84,"offset":2069}}}]},{"id":"10c1df0f-10d9-4535-afbd-0ed62c059e10","members":[{"id":"36f36d99-15e5-464c-b6f2-b83ed9db15e5","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":95,"offset":2363},"start":{"column":5,"line":95,"offset":2341}},"value":{"id":"77a54c57-b6ea-471c-89a9-b86bc194b32c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"8a944590-347c-4d19-a49e-e950b6e7a062","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":96,"offset":2386},"start":{"column":5,"line":96,"offset":2369}},"value":{"id":"f1bcc17b-32e8-430f-bdb4-bb2e16af92a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"0999b0e1-7c4c-4543-832e-237bd2d9267e","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"36d22efd-2d55-4b65-ac47-19a54508681f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"01bcf82b-d459-4bd0-b81b-5e60bde35741","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}}}],"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":28,"line":98,"offset":2417}}},"id":"a6d5586f-93f7-40fc-9df8-4415e13f41f5","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2428},"start":{"column":5,"line":98,"offset":2394}}},{"body":{"id":"4f56af4f-c4f3-43a0-b3a3-b5535067835f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7c40abde-66c1-4eab-a59d-8b618b192904","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"df8ce49c-ed52-46ba-9f2c-a5a293a30b99","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"90f43d79-bd7b-468c-a998-1f7c663d9609","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":99,"offset":2432},"start":{"column":1,"line":94,"offset":2322}},"supertypes":[]},{"id":"9600e6fb-53cf-4eba-87c5-4cb7aca150bd","isConstant":true,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":1,"line":101,"offset":2436}},"value":{"args":[{"id":"e1d3ee4a-cf12-4750-9846-3e13e07afad4","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":27,"line":101,"offset":2462}},"value":{"id":"964a4a90-2c2e-48f7-969f-38e7844f3685","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":101,"offset":2472},"start":{"column":35,"line":101,"offset":2470}},"value":10}},{"id":"2746225f-37ea-427c-bd6d-95be799e61fa","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":39,"line":101,"offset":2474}},"value":{"id":"ae25102a-1aa0-4078-8bae-5987fb157c12","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":59,"line":101,"offset":2494},"start":{"column":53,"line":101,"offset":2488}},"value":"FLOW"}}],"id":"582a57dc-c78c-4532-90ad-22f009c9079d","instantiated":{"id":"2cd3b14b-6b09-4b9b-807a-c7e682e840da","metadata":[],"name":"Evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":101,"offset":2461},"start":{"column":20,"line":101,"offset":2455}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":101,"offset":2495},"start":{"column":16,"line":101,"offset":2451}}}},{"id":"63386881-ff44-4aa8-ad4b-8da7f68cdc85","isConstant":true,"metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":102,"offset":2541},"start":{"column":1,"line":102,"offset":2497}},"value":{"args":[{"id":"21999067-11f9-435d-a3e0-54028ac22510","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":102,"offset":2540},"start":{"column":28,"line":102,"offset":2524}},"value":{"id":"86a593d6-5379-4513-a8cf-f641e8d50dfd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":102,"offset":2540},"start":{"column":39,"line":102,"offset":2535}},"value":[{"id":"d79d0179-0177-43b0-b0f1-e0d06278e71b","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"74f06927-67f8-4313-b4eb-a9f039813f9f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":102,"offset":2539},"start":{"column":40,"line":102,"offset":2536}},"value":"a"}]]}}],"id":"72d0ee9b-5704-4cfb-b74a-7692691fce92","instantiated":{"id":"a401c14d-b2ed-4b2c-9110-2af737e44899","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":102,"offset":2523},"start":{"column":22,"line":102,"offset":2518}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":102,"offset":2541},"start":{"column":18,"line":102,"offset":2514}}}},{"id":"112724b3-841c-45e6-a9b3-ab9d39736b1a","isConstant":true,"metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2585},"start":{"column":1,"line":103,"offset":2543}},"value":{"args":[{"id":"e81a0a07-856c-4d82-a271-041f7ec32839","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2584},"start":{"column":30,"line":103,"offset":2572}},"value":{"id":"b8c27e75-854c-49d0-89b1-5011108f606b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":103,"offset":2584},"start":{"column":41,"line":103,"offset":2583}},"value":1}}],"id":"8282c2bf-f86a-4499-aba5-9f11b39aa195","instantiated":{"id":"7e64edc2-88fa-480d-8150-a4d240fb7c36","metadata":[],"name":"Alegria","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":103,"offset":2571},"start":{"column":22,"line":103,"offset":2564}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":43,"line":103,"offset":2585},"start":{"column":18,"line":103,"offset":2560}}}},{"id":"367d0b0b-2b77-4ebb-9e8f-570d7c7d7ca8","isConstant":true,"metadata":[],"name":"emocion3","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":104,"offset":2644},"start":{"column":1,"line":104,"offset":2587}},"value":{"args":[{"id":"41e77472-5649-449d-b9cf-edbc785218d6","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":104,"offset":2643},"start":{"column":28,"line":104,"offset":2614}},"value":{"id":"8f36111a-859c-4327-bb5c-25d84e8f41cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":104,"offset":2643},"start":{"column":39,"line":104,"offset":2625}},"value":[{"id":"bff9d717-83d7-4f0f-a1cb-bc506ba13131","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"4180e3ff-9c46-4377-bdf6-623e488e66cf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":56,"line":104,"offset":2642},"start":{"column":40,"line":104,"offset":2626}},"value":"AAAAAAAAAAAAAA"}]]}}],"id":"fbd5e69c-5cf2-415f-a694-39a63a0794b2","instantiated":{"id":"0b93ae9f-7fad-473c-bd4f-edc7e8fef38f","metadata":[],"name":"Furia","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":104,"offset":2613},"start":{"column":22,"line":104,"offset":2608}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":104,"offset":2644},"start":{"column":18,"line":104,"offset":2604}}}},{"id":"0b5d0a38-fec2-469f-8a93-f03645ecd74e","isConstant":true,"metadata":[],"name":"eitan","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2711},"start":{"column":1,"line":105,"offset":2646}},"value":{"args":[{"id":"9f8ee2a5-7448-482b-87c4-e4bf9431d73a","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2679},"start":{"column":28,"line":105,"offset":2673}},"value":{"id":"96d0c9ad-8daf-4105-acf5-e1207a52ec5b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":105,"offset":2679},"start":{"column":33,"line":105,"offset":2678}},"value":2}},{"id":"e5c5136b-4538-4c79-ba6d-cf34b9694d3c","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2710},"start":{"column":36,"line":105,"offset":2681}},"value":{"id":"b5d3cc48-ed4a-4cb6-84e2-f94641a5a8ff","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":65,"line":105,"offset":2710},"start":{"column":46,"line":105,"offset":2691}},"value":[{"id":"cd363018-c34e-4459-a778-ec7790bb92ce","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[{"id":"83672c34-2204-4bae-98e9-5c6d49e22461","metadata":[],"name":"emocion1","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":105,"offset":2700},"start":{"column":47,"line":105,"offset":2692}}},{"id":"12fe9de2-9f19-4f37-bbc3-fe9818c1e00b","metadata":[],"name":"emocion2","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":105,"offset":2709},"start":{"column":56,"line":105,"offset":2701}}}]]}}],"id":"27e871ca-8ae0-4c82-a48f-36373e2c8ee6","instantiated":{"id":"10300e34-c190-4a62-a554-db7d401d1b00","metadata":[],"name":"Persona","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":105,"offset":2671},"start":{"column":19,"line":105,"offset":2664}}},"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":105,"offset":2711},"start":{"column":15,"line":105,"offset":2660}}}},{"id":"a76a319c-12e6-47c6-905c-010687b91459","isConstant":true,"metadata":[],"name":"ramiro","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2731},"start":{"column":1,"line":106,"offset":2713}},"value":{"id":"33ca82e9-cb47-4b45-a710-ed5d47e03cd1","metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":106,"offset":2731},"start":{"column":16,"line":106,"offset":2728}}}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":58,"line":106,"offset":2770},"start":{"column":20,"line":106,"offset":2732}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:04:57.310Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:05:00.862Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:05:01.352Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":135,"timestamp":"2024-11-22T14:05:01.732Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":154,"timestamp":"2024-11-22T14:05:02.221Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:05:02.928Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T14:05:04.397Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":129,"timestamp":"2024-11-22T14:05:04.605Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T14:05:05.566Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":157,"timestamp":"2024-11-22T14:05:05.723Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T14:05:06.298Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:05:06.401Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T14:05:08.429Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:05:08.816Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8c1d90} at testExample.wtest:10 exhausted all cases without a match [Send]{8c1d90} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{8c1d90} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:15.671Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{1adea5} at testExample.wtest:10 exhausted all cases without a match [Send]{1adea5} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{1adea5} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:05:15.671Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:15.765Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5d1a3d} at testExample.wtest:10 exhausted all cases without a match [Send]{5d1a3d} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{5d1a3d} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:17.464Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{172949} at testExample.wtest:10 exhausted all cases without a match [Send]{172949} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{172949} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:05:17.465Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:05:17.603Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:17.662Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:17.719Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:17.959Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:18.015Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:05:20.449Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:05:20.925Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{647a5e} at testExample.wtest:10 exhausted all cases without a match [Send]{647a5e} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{647a5e} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:21.776Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":132,"timestamp":"2024-11-22T14:05:21.963Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{52d42f} at testExample.wtest:10 exhausted all cases without a match [Send]{52d42f} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{52d42f} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:22.041Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{247eb6} at testExample.wtest:10 exhausted all cases without a match [Send]{247eb6} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{247eb6} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:22.395Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{b72c8f} at testExample.wtest:10 exhausted all cases without a match [Send]{b72c8f} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Send]{b72c8f} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:22.706Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:05:36.828Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":149,"timestamp":"2024-11-22T14:05:38.011Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:05:38.266Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:05:38.697Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":122,"timestamp":"2024-11-22T14:05:38.978Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":137,"timestamp":"2024-11-22T14:05:41.071Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:41.072Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:41.134Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:41.192Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:41.455Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:42.261Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:42.317Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:42.515Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:42.592Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:42.743Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:43.111Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":171,"timestamp":"2024-11-22T14:05:45.084Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:05:45.188Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:05:45.342Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:05:45.703Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8d8350} at testExample.wtest:12 exhausted all cases without a match [Send]{8d8350} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Send]{8d8350} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:47.239Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:47.336Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f5ee3d} at testExample.wtest:12 exhausted all cases without a match [Send]{f5ee3d} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Send]{f5ee3d} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:05:47.824Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:47.918Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:47.976Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:05:48.096Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:48.097Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:48.249Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:48.493Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:05:48.550Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:06:14.905Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:14.906Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T14:06:15.044Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:15.044Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:06:15.155Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:15.229Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:15.290Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:15.541Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 15 | \n 16 | \n> 17 | }\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n","stack":"Error: Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 15 | \n 16 | \n> 17 | }\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:06:15.551Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:15.551Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 15 | \n 16 | \n> 17 | }\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n","stack":"Error: Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 15 | \n 16 | \n> 17 | }\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:06:15.558Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T14:06:15.668Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:16.831Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:17.120Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 15 | \n 16 | \n> 17 | }\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n","stack":"Error: Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\n 15 | \n 16 | \n> 17 | }\n | ^\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:06:18.731Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:19.400Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:06:19.521Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:19.521Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:19.674Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:06:19.781Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:19.923Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":141,"timestamp":"2024-11-22T14:06:22.108Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:22.109Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:06:30.662Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:07:01.484Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:07:01.594Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:07:47.791Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T14:07:47.904Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:07:55.709Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:07:57.247Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T14:07:57.461Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:07:57.461Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:07:57.633Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:07:57.711Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:07:57.889Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:07:57.966Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:07:58.247Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.in [Field]{63db68} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.in [Field]{63db68} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.in [Field]{63db68} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:07:58.429Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:07:58.661Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:07:58.956Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integ [Field]{2a5eca} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integ [Field]{2a5eca} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integ [Field]{2a5eca} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:07:59.040Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:07:59.155Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integran [Field]{fc3515} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integran [Field]{fc3515} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integran [Field]{fc3515} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:07:59.413Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.grupo.integrantes [Field]{1a2275} at intensamente.wlk:23 exhausted all cases without a match intensamente.grupo.integrantes [Field]{1a2275} at intensamente.wlk:23 exhausted all cases without a match","stack":"Error: intensamente.grupo.integrantes [Field]{1a2275} at intensamente.wlk:23 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:07:59.905Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:08:00.102Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":134,"timestamp":"2024-11-22T14:08:00.240Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:08:00.419Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"681a52a5-9479-44c9-a547-79e04274d0c8","members":[{"id":"2528cc20-1413-48fe-870b-2305b9e7d698","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":23,"offset":401},"start":{"column":5,"line":23,"offset":384}},"value":{"id":"c882588e-6231-4b67-adcc-9efb48a7f5b1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"dcda7a43-4a3c-4bfe-82f6-05d774df4c85","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"edd93f28-3284-4c12-8ae3-62efa85b89ad","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"d9de08aa-a698-4aaf-9e9f-e86428630ef2","members":[{"body":{"id":"3ddffc7a-1eff-4bcf-81e6-124c334cc59b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"85e73e0d-7621-431b-ac6b-9f8adcd03360","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"306d97c0-6af0-4eaa-96c6-528db5ebe68a","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":77,"line":24,"offset":481},"start":{"column":71,"line":24,"offset":475}}}],"id":"76aa0872-607f-49c1-8ae3-a18aecb97a06","message":"hacerEvento","metadata":[],"receiver":{"id":"8e29f7a1-b5bb-44c0-92c7-cd50092c329a","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":24,"offset":462},"start":{"column":57,"line":24,"offset":461}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":78,"line":24,"offset":482},"start":{"column":57,"line":24,"offset":461}}}}]},"id":"12e132e1-355b-4f63-b725-5acd734085fe","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"749115d7-a435-4523-ada6-4d311b2d3cf8","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":24,"offset":459},"start":{"column":54,"line":24,"offset":458}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"bafe8927-afb5-47e3-a629-6b368468b4ef","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"61f3491e-73e5-43d4-ae2f-21b81ae885c2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.hacerEvento(evento)}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":79,"line":24,"offset":483},"start":{"column":53,"line":24,"offset":457}},"supertypes":[{"args":[],"id":"06fb4f77-8104-42fa-b14a-e0ecd559d943","metadata":[],"reference":{"id":"23a79c79-7b6b-4dea-8bed-5cbe73b2cb31","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"40d8d960-3630-4ce1-ad5b-75e0928c8233","message":"forEach","metadata":[],"receiver":{"id":"6bd6aa66-18ed-42fd-a2a2-32422a1f9f42","metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":24,"offset":448},"start":{"column":33,"line":24,"offset":437}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":24,"offset":484},"start":{"column":33,"line":24,"offset":437}}}}],"sourceMap":{"end":{"column":80,"line":24,"offset":484},"start":{"column":33,"line":24,"offset":437}}},"id":"6fa1dff0-486c-42db-975e-937cedfad409","isOverride":false,"metadata":[],"name":"vivirEvento","parameters":[{"id":"3f12fcb3-69ca-414b-affa-c8f731521b96","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":24,"offset":434},"start":{"column":24,"line":24,"offset":428}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":24,"offset":484},"start":{"column":5,"line":24,"offset":409}}}],"metadata":[],"name":"grupo","problems":[{"code":"malformedMember","sourceMap":{"end":{"column":24,"line":23,"offset":403},"start":{"column":22,"line":23,"offset":401}}}],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":25,"offset":487},"start":{"column":1,"line":22,"offset":365}},"supertypes":[]},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:08:02.610Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:09:11.733Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:11.802Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:11.894Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:09:11.996Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:12.162Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:09:12.179Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:12.180Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:09:12.295Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:12.295Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ne [Variable]{3f374f} at intensamente.wlk:101 exhausted all cases without a match intensamente.ne [Variable]{3f374f} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.ne [Variable]{3f374f} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:12.578Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T14:09:12.711Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.new [Variable]{97d0cb} at intensamente.wlk:101 exhausted all cases without a match intensamente.new [Variable]{97d0cb} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.new [Variable]{97d0cb} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:12.912Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:09:14.031Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:09:14.328Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:09:15.307Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:09:15.495Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:09:15.598Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:09:16.014Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:09:16.117Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:09:16.648Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":149,"timestamp":"2024-11-22T14:09:20.175Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:09:20.294Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.e [Variable]{c6c113} at intensamente.wlk:101 exhausted all cases without a match intensamente.e [Variable]{c6c113} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.e [Variable]{c6c113} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:22.535Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.em [Variable]{ec7b94} at intensamente.wlk:101 exhausted all cases without a match intensamente.em [Variable]{ec7b94} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.em [Variable]{ec7b94} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:22.734Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:09:23.298Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.n [Variable]{8120af} at intensamente.wlk:101 exhausted all cases without a match intensamente.n [Variable]{8120af} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.n [Variable]{8120af} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:23.559Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.new [Variable]{26365b} at intensamente.wlk:101 exhausted all cases without a match intensamente.new [Variable]{26365b} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.new [Variable]{26365b} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:23.809Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:09:24.633Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:09:24.771Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:09:24.878Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:09:25.048Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T14:09:31.726Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:09:32.382Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:32.750Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.pr [Variable]{c44add} at intensamente.wlk:101 exhausted all cases without a match intensamente.pr [Variable]{c44add} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.pr [Variable]{c44add} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:33.853Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.pror [Variable]{91dcc3} at intensamente.wlk:101 exhausted all cases without a match intensamente.pror [Variable]{91dcc3} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.pror [Variable]{91dcc3} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:34.979Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.proe [Variable]{820375} at intensamente.wlk:101 exhausted all cases without a match intensamente.proe [Variable]{820375} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.proe [Variable]{820375} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:35.536Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.proe [Variable]{934750} at intensamente.wlk:101 exhausted all cases without a match intensamente.proe [Variable]{934750} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.proe [Variable]{934750} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:36.127Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.prop [Variable]{8a5bf7} at intensamente.wlk:101 exhausted all cases without a match intensamente.prop [Variable]{8a5bf7} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.prop [Variable]{8a5bf7} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:36.559Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.prope [Variable]{be448c} at intensamente.wlk:101 exhausted all cases without a match intensamente.prope [Variable]{be448c} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.prope [Variable]{be448c} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:36.740Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.propert [Variable]{ec6673} at intensamente.wlk:101 exhausted all cases without a match intensamente.propert [Variable]{ec6673} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.propert [Variable]{ec6673} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:37.082Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:09:37.920Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T14:09:38.427Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T14:09:38.847Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:09:42.011Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:09:42.841Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:09:43.041Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:09:43.258Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:09:45.093Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":121,"timestamp":"2024-11-22T14:09:46.510Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"fileName":"intensamente.wlk","id":"5313b01f-dc03-4187-bae5-f6908cc456f0","imports":[],"members":[{"id":"a102498e-865a-42bb-836b-6d53b1bf1e3d","members":[{"id":"72b34bba-ae60-4e85-b5b8-6cbadf130f89","isConstant":true,"isProperty":false,"metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":2,"offset":29},"start":{"column":3,"line":2,"offset":19}},"value":{"id":"f388396d-79cd-427b-8326-a6a05f0ca5e3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"aa540d84-8157-4ad9-8fd5-f7cf6f5b185c","isConstant":false,"isProperty":false,"metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":3,"line":4,"offset":35}},"value":{"id":"fa5ecb24-f15e-4611-89d1-592b9d58ddc1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":4,"offset":53},"start":{"column":19,"line":4,"offset":51}},"value":[{"id":"1a2fd6ae-6e75-44c6-9255-2e3286d946ef","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"be21f17a-7488-4b39-814c-84aef2dd1bc0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"12eeb8d6-7fb2-4773-9a63-44e944831bc5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1f403ac7-5892-44a4-a140-f6dd3c1e4327","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":7,"offset":106},"start":{"column":40,"line":7,"offset":104}},"value":12},{"id":"46af8e9c-3e4f-49f9-9731-e962b2b12168","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":46,"line":7,"offset":110},"start":{"column":44,"line":7,"offset":108}},"value":19}],"id":"7e70bdac-bb80-4d63-a46a-5f820ba99e3b","message":"between","metadata":[{"args":{"position":"end","text":"// 2"},"name":"comment"}],"receiver":{"id":"d9f2dcf5-2107-41dc-9b2e-4429ed3bf559","metadata":[],"name":"edad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":7,"offset":95},"start":{"column":27,"line":7,"offset":91}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":47,"line":7,"offset":111},"start":{"column":27,"line":7,"offset":91}}}}],"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":27,"line":7,"offset":91}}},"id":"8c29a270-89e7-48cd-b088-b55a1aad590a","isOverride":false,"metadata":[{"args":{"position":"start","text":"// 1"},"name":"comment"}],"name":"esAdolecente","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":7,"line":9,"offset":121},"start":{"column":3,"line":7,"offset":67}}},{"body":{"id":"ec5a484f-3ef5-43ab-acf1-eaaedf915823","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"69a7a3c3-6a1a-4bd0-bf85-74009fe9cc33","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"bbe53b01-8799-4d4c-9497-392152491584","metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":57,"line":10,"offset":179},"start":{"column":50,"line":10,"offset":172}}}],"id":"50f780c5-eb05-4430-9405-f241e9415cfb","message":"add","metadata":[{"args":{"position":"end","text":"//3"},"name":"comment"}],"receiver":{"id":"3c3fc624-e0e3-458b-8058-7df8de4cb6b7","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":10,"offset":167},"start":{"column":36,"line":10,"offset":158}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":10,"offset":180},"start":{"column":36,"line":10,"offset":158}}}}],"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":36,"line":10,"offset":158}}},"id":"2d208662-7eec-4aa6-bcc7-54e41b4f517d","isOverride":false,"metadata":[],"name":"agregarEmocion","parameters":[{"id":"a2779f96-ebc6-4916-baa0-376974c57a77","isVarArg":false,"metadata":[],"name":"emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":10,"offset":154},"start":{"column":25,"line":10,"offset":147}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":12,"offset":189},"start":{"column":3,"line":10,"offset":125}}},{"body":{"id":"db0d955c-1fe9-4e2a-8719-8419c5cd0999","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"5b2385be-c61e-4125-befb-cc04a9a56131","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"1e92cd8a-6280-4e4a-9d0d-60de29ceab4f","members":[{"body":{"id":"97d5c8e0-00da-4a3a-81d4-5873732edfb8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"a132f2ed-e449-4e44-9d02-34d287a5491d","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"8e21e269-a2c7-4aab-b36b-e436576436fd","message":"puedeLiberarse","metadata":[],"receiver":{"id":"bcb2bccc-4722-4c6e-8812-eaf95ea22858","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":13,"offset":239},"start":{"column":48,"line":13,"offset":238}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":66,"line":13,"offset":256},"start":{"column":48,"line":13,"offset":238}}}}]},"id":"5ff0a633-04d1-4840-a5f9-9bf6da219ee9","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"cceaaf90-f4df-4544-bee4-d2e587341e97","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":13,"offset":234},"start":{"column":43,"line":13,"offset":233}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"a8c2bb2c-c7c6-48e3-b31e-127e0859c944","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"33e16528-e08e-43a3-a1f3-afdee42a8dcf","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{e => e.puedeLiberarse()}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":67,"line":13,"offset":257},"start":{"column":42,"line":13,"offset":232}},"supertypes":[{"args":[],"id":"797a6e85-1052-400f-be9e-f026eca6a4a4","metadata":[],"reference":{"id":"e70ac300-ad90-4f70-95fe-8a96b746b18f","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"c1abf18e-97ae-4756-8ccc-2c8cdecf4060","message":"all","metadata":[{"args":{"position":"end","text":"//4 "},"name":"comment"}],"receiver":{"id":"689aaf3e-6443-4486-ba14-ab339fe83e9a","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":13,"offset":227},"start":{"column":28,"line":13,"offset":218}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":13,"offset":258},"start":{"column":28,"line":13,"offset":218}}}}],"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":28,"line":13,"offset":218}}},"id":"495c2139-8d07-4474-bf62-2c00125bba2d","isOverride":false,"metadata":[],"name":"puedeExplotar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":15,"offset":267},"start":{"column":3,"line":13,"offset":193}}},{"body":{"id":"0fa2658b-27e0-4e2d-90a3-de47b5bdd2c1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"52b3c26f-a150-42a0-ae2c-383f4bc78b9a","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":5,"line":17,"offset":301}},"value":{"args":[{"id":"25f47d45-69cd-4d10-ae02-d83f6790925c","members":[{"body":{"id":"1aadbe79-7c0a-460f-a1bf-386e3fca2c39","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"cda4b66f-b2e9-439e-8b5a-50d417b26df5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[],"id":"59cd1565-5a45-4a14-9e87-8437a858cc5c","message":"liberar","metadata":[],"receiver":{"id":"0fa5e70d-6250-4fb9-b0c8-81dadcf83a0c","metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":17,"offset":335},"start":{"column":38,"line":17,"offset":334}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":17,"offset":345},"start":{"column":38,"line":17,"offset":334}}}}]},"id":"9028a4d8-6d5a-4898-a3d9-ec5d2477f6bd","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"b96bafb8-5239-4185-b250-d85283516045","isVarArg":false,"metadata":[],"name":"e","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":17,"offset":330},"start":{"column":33,"line":17,"offset":329}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"260cfc2f-3112-4f37-b807-89d8bb49ee61","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"cc67fa43-b0d5-45b6-b9a6-1bda6e5f49e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{ e => e.liberar() }"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":51,"line":17,"offset":347},"start":{"column":31,"line":17,"offset":327}},"supertypes":[{"args":[],"id":"4bce2b0c-f4e1-41ec-8641-6282d2065fda","metadata":[],"reference":{"id":"ca230c49-43dc-4dc8-b25d-fad7fc902a8a","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"3eacad16-5aaa-4e2b-98e7-b8a6d43d836a","message":"map","metadata":[],"receiver":{"id":"eb92cae0-1aa4-4122-9700-35a1cd3821be","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":17,"offset":322},"start":{"column":17,"line":17,"offset":313}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":52,"line":17,"offset":348},"start":{"column":17,"line":17,"offset":313}}},"variable":{"id":"d100ef78-aeb2-44e1-8e34-63c0c9b5808a","metadata":[],"name":"emociones","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":17,"offset":310},"start":{"column":5,"line":17,"offset":301}}}}],"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":24,"line":16,"offset":294}}},"id":"654fd8d6-e7e3-492a-ac2b-25a45d4f5fda","isOverride":false,"metadata":[],"name":"hacerEvento","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":18,"offset":353},"start":{"column":3,"line":16,"offset":273}}}],"metadata":[{"args":{"position":"end","text":"//6"},"name":"comment"}],"name":"Persona","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":19,"offset":356},"start":{"column":1,"line":1,"offset":0}},"supertypes":[]},{"id":"53b2197d-cafa-4768-a67f-b275b903a38b","members":[{"id":"dd65d224-c544-4854-92bc-53986f627e9e","isConstant":true,"isProperty":false,"metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":404},"start":{"column":5,"line":23,"offset":384}},"value":{"id":"c3604c68-9a73-48a5-b6e9-5f3e0973d7b3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":23,"offset":404},"start":{"column":23,"line":23,"offset":402}},"value":[{"id":"eb98a47b-0713-425d-b5d2-5813ccd28367","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"4b764cd2-a2ec-45da-84a0-263cb9d73865","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6248cfe1-6014-4e28-93ef-d7e00126d089","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b41172b0-cb56-440c-99f5-1d281ad28746","members":[{"body":{"id":"89d591b3-298a-4509-8ed5-a43b1c15d890","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ab0534ac-d5bb-42b9-9e8f-a73a9d7641e2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"b69212b9-2d2f-4621-a71e-2bfe8bc0eda3","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":77,"line":24,"offset":482},"start":{"column":71,"line":24,"offset":476}}}],"id":"3794c070-d76f-402a-9966-9a8e43be1569","message":"hacerEvento","metadata":[],"receiver":{"id":"c0316b1c-6e2e-4205-9175-0ca54f8095dc","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":24,"offset":463},"start":{"column":57,"line":24,"offset":462}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":78,"line":24,"offset":483},"start":{"column":57,"line":24,"offset":462}}}}]},"id":"19a99f09-a26f-4e9e-a331-4a5ec41cf720","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"a68fa432-b706-438b-9e89-a0123d79232f","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":24,"offset":460},"start":{"column":54,"line":24,"offset":459}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"3b51c54e-5dc7-43ad-a469-a83f4a3eea6c","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"c7540399-c8f4-46d8-8e93-ce08d522b066","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.hacerEvento(evento)}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":79,"line":24,"offset":484},"start":{"column":53,"line":24,"offset":458}},"supertypes":[{"args":[],"id":"e45d89a0-d36a-4300-83fb-6b7849aa1500","metadata":[],"reference":{"id":"90efb286-69c2-4ac4-b1d4-a695a046177d","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"8df75a49-dc8a-490a-ac54-f6dbbe4c8b20","message":"forEach","metadata":[],"receiver":{"id":"8b1c2e2f-36d3-4401-a16b-ac7ac9414674","metadata":[],"name":"integrantes","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":24,"offset":449},"start":{"column":33,"line":24,"offset":438}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":24,"offset":485},"start":{"column":33,"line":24,"offset":438}}}}],"sourceMap":{"end":{"column":80,"line":24,"offset":485},"start":{"column":33,"line":24,"offset":438}}},"id":"19129a1e-aea4-47ac-9d99-7282e75e8c3f","isOverride":false,"metadata":[],"name":"vivirEvento","parameters":[{"id":"f90b90e3-517e-456c-937a-833d8c063be0","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":30,"line":24,"offset":435},"start":{"column":24,"line":24,"offset":429}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":80,"line":24,"offset":485},"start":{"column":5,"line":24,"offset":410}}}],"metadata":[],"name":"grupo","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":25,"offset":488},"start":{"column":1,"line":22,"offset":365}},"supertypes":[]},{"id":"31eb29ac-bb36-4d03-bb5d-4112e4c1d810","members":[{"id":"608c091e-f585-4c54-87fa-b333b92ceb07","isConstant":false,"isProperty":true,"metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":28,"offset":542},"start":{"column":5,"line":28,"offset":513}},"value":{"id":"c6405eb2-d64c-4788-a691-dc0255d9a573","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":34,"line":28,"offset":542},"start":{"column":31,"line":28,"offset":539}},"value":100}},{"id":"c3acb662-62d4-4cb6-a2c4-b8fd72216c12","isConstant":false,"isProperty":true,"metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":29,"offset":580},"start":{"column":5,"line":29,"offset":548}},"value":{"id":"fff95b11-12d7-430e-83d0-e9ff5ecfbfe5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":29,"offset":580},"start":{"column":36,"line":29,"offset":579}},"value":0}},{"id":"79acbc04-8756-4ae9-be4d-3157e26492fe","isConstant":true,"isProperty":true,"metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":30,"offset":623},"start":{"column":5,"line":30,"offset":586}},"value":{"id":"e7399340-cbc8-4332-b773-daaf42a38180","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":30,"offset":623},"start":{"column":41,"line":30,"offset":622}},"value":5}},{"body":{"id":"d3aef431-8782-4fb2-aaa4-0ae9d1faab11","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"17f20939-df2d-42d4-b82a-72bd918c26c8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"85c9739c-9c5e-4f6d-8a11-c2558016aa96","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":33,"offset":720},"start":{"column":29,"line":33,"offset":716}},"value":true}}],"sourceMap":{"end":{"column":33,"line":33,"offset":720},"start":{"column":29,"line":33,"offset":716}}},"id":"8fbad889-251a-4c0e-844c-ad552235ffc2","isOverride":false,"metadata":[{"args":{"position":"start","text":"// Método para determinar si una emoción puede liberarse"},"name":"comment"}],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":33,"offset":720},"start":{"column":3,"line":33,"offset":690}}},{"body":{"id":"f85c477f-cbd5-44ff-bdf3-dba490455284","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"22b73aed-e860-4a0e-8ad3-c2c13634f84c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"a3e27a40-8b51-4662-b73b-93ceaaa73e70","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":770},"start":{"column":40,"line":36,"offset":765}}}}],"sourceMap":{"end":{"column":45,"line":36,"offset":770},"start":{"column":40,"line":36,"offset":765}}},"id":"69c4b9c6-8920-494b-a2b1-e92dab26f0a5","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[{"id":"f29970ee-7e37-4be8-bdec-4c9cf401bffa","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":36,"offset":761},"start":{"column":31,"line":36,"offset":756}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":36,"offset":770},"start":{"column":5,"line":36,"offset":730}}},{"body":{"id":"e89bef52-d3ee-44f7-8824-a82e0e55da9f","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"84708094-43b1-47f4-94d3-f4b54eb5f967","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":826},"start":{"column":5,"line":39,"offset":806}},"value":{"args":[],"id":"92a09a96-e6a4-41b5-bc03-cb160ed0b1b3","message":"plus","metadata":[],"originalOperator":"+","receiver":{"id":"725d9839-387e-4974-bcc4-6a1eb4ca05e0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":826},"start":{"column":24,"line":39,"offset":825}},"value":1},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":25,"line":39,"offset":826},"start":{"column":22,"line":39,"offset":823}}},"variable":{"id":"7b3ce9e1-07bd-4b9b-9704-81d691a05aa7","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":39,"offset":821},"start":{"column":5,"line":39,"offset":806}}}},{"condition":{"args":[],"id":"3ff4f17a-5686-41bb-9f9d-7950d3d4b766","message":"puedeLiberarse","metadata":[],"receiver":{"id":"72c5c58f-ea93-488e-b0d4-cbd5cb9662ed","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":12,"line":40,"offset":839},"start":{"column":8,"line":40,"offset":835}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":40,"offset":856},"start":{"column":8,"line":40,"offset":835}}},"elseBody":{"id":"a4272e80-ce62-4e5a-b119-0464525a62e9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[]},"id":"6a560976-e284-4b98-bf40-adb7ec26d4f2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":42,"offset":905},"start":{"column":5,"line":40,"offset":832}},"thenBody":{"id":"dd775db2-8c74-4500-b1b5-0024c68345d1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6e64ac9a-45b8-4228-b345-13d394c41373","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":898},"start":{"column":9,"line":41,"offset":868}},"value":{"args":[{"args":[],"id":"ab1a7765-84d4-4eab-9bbc-c0c03d1fdbb6","message":"impacto","metadata":[],"receiver":{"id":"bcdb3be0-2718-4de3-9022-da0824fd6da1","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":41,"offset":888},"start":{"column":23,"line":41,"offset":882}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":41,"offset":898},"start":{"column":23,"line":41,"offset":882}}}],"id":"af85d9b4-4974-44c1-ae0b-4a6924e904fb","message":"-","metadata":[],"receiver":{"id":"d108c24b-8cd6-4090-a1c4-9e7aa355b8f6","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":878},"start":{"column":9,"line":41,"offset":868}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"e3fea9de-ed83-48b9-b171-4f165579d221","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":41,"offset":878},"start":{"column":9,"line":41,"offset":868}}}}],"sourceMap":{"end":{"column":6,"line":42,"offset":905},"start":{"column":30,"line":40,"offset":857}}}}],"sourceMap":{"end":{"column":4,"line":43,"offset":910},"start":{"column":26,"line":38,"offset":799}}},"id":"f217a5e9-6cb2-4bdb-8e80-cb568b0d514c","isOverride":false,"metadata":[],"name":"liberar","parameters":[{"id":"0cc2cef4-450e-4ebe-b734-4f6315df39dd","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":38,"offset":797},"start":{"column":18,"line":38,"offset":791}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":4,"line":43,"offset":910},"start":{"column":3,"line":38,"offset":776}}},{"body":{"id":"7ae70bc8-09e8-4136-861c-d0d062ebd0c0","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"c24cc560-5e0f-484d-9720-416c12ede159","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"97c5a7eb-a37b-4a3e-9a04-01c1cec7d294","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":976},"start":{"column":45,"line":45,"offset":958}}}],"id":"48ff371c-1fdc-457a-88aa-64e556de6945","message":">","metadata":[],"receiver":{"id":"812ef7d4-ae74-4082-ba55-13d34deced13","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":45,"offset":957},"start":{"column":34,"line":45,"offset":947}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":976},"start":{"column":34,"line":45,"offset":947}}}}],"sourceMap":{"end":{"column":63,"line":45,"offset":976},"start":{"column":34,"line":45,"offset":947}}},"id":"a16020ac-88af-4bed-a9dc-c0136d722340","isOverride":false,"metadata":[],"name":"intensidadElevada","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":63,"line":45,"offset":976},"start":{"column":5,"line":45,"offset":918}}},{"body":{"id":"c52b67c5-26cb-4e92-a252-c304563cbf48","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8add9067-660c-4f4d-903a-ebe338c50b1b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"440e7e46-49c7-46c7-965f-d58156f6c1a5","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"af2154af-4865-4267-a946-cd04a65612fc","isOverride":false,"metadata":[],"name":"intensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"61cdd43c-d274-4a63-be05-758a34a68208","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e078a7ae-73f2-4943-a47c-94fdf44cf383","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"5f97b67a-c581-4069-bb9b-2514a0247408","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"c04e900a-d6ed-42a9-8d2a-dec032a2984f","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"350f1bf2-bcd3-4a33-9740-06059bde04af","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"0ff858c2-e3ca-42b5-a2ec-b19937211846","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ffcac237-bd80-40b0-9e89-0b91365a0ef9","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"a4fd8350-182a-4065-97f7-96f6f1dfbc2b","isOverride":false,"metadata":[],"name":"criterioIntensidad","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"45304071-dc56-4ef6-a763-9ae01edfe901","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2f1408e8-e379-426d-8930-f01214f2d578","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"51d1f3a7-f187-4150-8be6-7f0207bc9ee4","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"86bec589-12ef-4dc4-b2fe-86b94c527f4e","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"90aa3ff8-a49a-4e6a-9db8-664d00cbd4b0","isOverride":false,"metadata":[],"name":"intensidad","parameters":[{"id":"9729e9e2-039a-4e80-ac7b-bad50c29448f","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"68a6c78c-8605-46e6-b900-e9044070b147","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"85f84715-5c19-4cd5-8e08-2449a269a8cd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"dedcd7c5-8535-4682-854d-712fd9e8dddd","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"d4d072c9-8060-40ab-ae4a-a947852f40e6","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2e71e938-d923-4502-b95e-42e7d6131bc9","isOverride":false,"metadata":[],"name":"cantidadEventos","parameters":[{"id":"f8f1cddf-6fe2-42f5-afab-15536558f768","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Emocion","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":47,"offset":981},"start":{"column":1,"line":26,"offset":490}},"supertypes":[]},{"id":"7c6494d8-5be6-4377-b828-a64218a9e03a","members":[{"id":"ebc6f92f-c97b-4b58-8603-c3a0efce807f","isConstant":true,"isProperty":false,"metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1039},"start":{"column":5,"line":50,"offset":1020}},"value":{"id":"d435b1a3-d968-4e30-90ae-dad86fb40c80","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":24,"line":50,"offset":1039},"start":{"column":22,"line":50,"offset":1037}},"value":[{"id":"faf50b4f-8c9b-4139-bee4-cc4ee3480a0e","metadata":[],"name":"wollok.lang.List","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},[]]}},{"body":{"id":"d616343d-1ff1-4fba-96b9-916117412fef","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"1c2b7b26-3cde-4345-bdb4-d78fa976166f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"68c014b9-aae5-4b4e-9140-dc908b538a63","message":"intensidadElevada","metadata":[],"receiver":{"id":"3e5d1991-47c7-40b1-a9db-c5bd06b89451","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":71,"line":52,"offset":1113},"start":{"column":67,"line":52,"offset":1109}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1133},"start":{"column":67,"line":52,"offset":1109}}}],"id":"d874082a-746d-4628-b48e-a5f32436aff7","message":"and","metadata":[],"receiver":{"args":[],"id":"6c4248a1-68cd-4631-aa32-0c4bb86b5de9","message":"tienePalabrota7","metadata":[],"receiver":{"id":"1efc5c6b-d46d-4395-9b1a-2f9836cd7674","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":52,"offset":1086},"start":{"column":40,"line":52,"offset":1082}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":62,"line":52,"offset":1104},"start":{"column":40,"line":52,"offset":1082}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1133},"start":{"column":40,"line":52,"offset":1082}}}}],"sourceMap":{"end":{"column":91,"line":52,"offset":1133},"start":{"column":40,"line":52,"offset":1082}}},"id":"49e87d0b-9493-4adf-a108-0e9808769674","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":91,"line":52,"offset":1133},"start":{"column":5,"line":52,"offset":1047}}},{"body":{"id":"79b301b9-5add-4b3c-9e0c-9b1519f1f045","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7018475a-c47f-445e-b154-7f17e7085623","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"f42bcabb-6b0f-4f2d-874a-7bc46291ef86","members":[{"body":{"id":"5038b0dc-fbab-41b8-b508-2895198728ac","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"363a6097-f7fa-4056-8fba-60c920ab021e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"9e2b6ad6-58bc-4158-9feb-a4b19d256db7","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1194},"start":{"column":59,"line":53,"offset":1193}},"value":7}],"id":"00db89e6-9299-4701-9594-375fd2e1a910","message":">","metadata":[],"receiver":{"args":[],"id":"e4b7e222-add2-47d0-801a-133461f09c34","message":"size","metadata":[],"receiver":{"id":"5d1ff95f-a69c-4d5c-bd74-70390433a987","metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":51,"line":53,"offset":1185},"start":{"column":50,"line":53,"offset":1184}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":58,"line":53,"offset":1192},"start":{"column":50,"line":53,"offset":1184}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":60,"line":53,"offset":1194},"start":{"column":50,"line":53,"offset":1184}}}}]},"id":"0de1932a-d0f2-48ae-beff-c947098f2d74","isOverride":false,"metadata":[],"name":"","parameters":[{"id":"637b0ba4-ffa7-4f72-b153-2057d14608db","isVarArg":false,"metadata":[],"name":"p","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":48,"line":53,"offset":1182},"start":{"column":47,"line":53,"offset":1181}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"id":"430e0b8c-dfb5-4b38-bb3a-68312a2496ec","isConstant":true,"isProperty":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"value":{"id":"4ecbff94-1443-479f-9ad2-b3a85e51d7aa","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":"{p=>p.size()>7}"}}],"metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":61,"line":53,"offset":1195},"start":{"column":46,"line":53,"offset":1180}},"supertypes":[{"args":[],"id":"b41793ea-880a-4a05-b65f-29f2e985e373","metadata":[],"reference":{"id":"a8498686-e50f-4e40-8637-2d6b41ae03cb","metadata":[],"name":"wollok.lang.Closure","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}]}],"id":"ad7fdc3e-3587-42a2-b84a-6e49d2a13c50","message":"any","metadata":[],"receiver":{"id":"4cc51dc3-1c61-4719-bba8-79e761203770","metadata":[],"name":"palabrotas","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":53,"offset":1176},"start":{"column":32,"line":53,"offset":1166}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1195},"start":{"column":32,"line":53,"offset":1166}}}}],"sourceMap":{"end":{"column":61,"line":53,"offset":1195},"start":{"column":32,"line":53,"offset":1166}}},"id":"afbcce94-a7da-4eb8-bf89-12761cb12ca4","isOverride":false,"metadata":[],"name":"tienePalabrota7","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":53,"offset":1195},"start":{"column":5,"line":53,"offset":1139}}}],"metadata":[],"name":"Furia","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":55,"offset":1200},"start":{"column":1,"line":49,"offset":985}},"supertypes":[{"args":[],"id":"4c7df278-dd46-4ea3-b425-4dde86d4f0f2","metadata":[],"reference":{"id":"550fdc4d-7165-42a6-92af-367508959b9b","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1013},"start":{"column":22,"line":49,"offset":1006}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":49,"offset":1013},"start":{"column":22,"line":49,"offset":1006}}}]},{"id":"717a4de7-4b58-4066-8b55-4a9137c14645","members":[{"body":{"id":"5defbc82-8d6c-465b-84b5-33f0d89f5655","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"91fd7762-9065-4e2a-9eee-bb3e4dfe5fc0","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1309},"start":{"column":9,"line":59,"offset":1285}},"value":{"args":[],"id":"bc3e4473-f3b8-4794-8a5e-6277943e6531","message":"abs","metadata":[],"receiver":{"id":"2c2ae78a-f351-4490-a454-a642e649aff8","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":59,"offset":1303},"start":{"column":22,"line":59,"offset":1298}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":33,"line":59,"offset":1309},"start":{"column":22,"line":59,"offset":1298}}},"variable":{"id":"abc437df-a382-4ebf-a48f-d78f494387d4","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":59,"offset":1295},"start":{"column":9,"line":59,"offset":1285}}}}],"sourceMap":{"end":{"column":6,"line":60,"offset":1316},"start":{"column":38,"line":58,"offset":1274}}},"id":"9f041087-fde6-4486-84f8-99f2aa2ac64f","isOverride":true,"metadata":[],"name":"intensidad","parameters":[{"id":"32326b69-a68d-4413-b85f-175fd769dfcd","isVarArg":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":58,"offset":1273},"start":{"column":32,"line":58,"offset":1268}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":60,"offset":1316},"start":{"column":5,"line":58,"offset":1241}}},{"body":{"id":"799fda7f-1817-4dde-8c2c-aa46ecb988b2","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"7957b371-56a5-4a9c-b631-dcbb1adfc0f1","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"aa32748c-1509-4557-9a96-7451806e5cf6","message":"eventosPar","metadata":[],"receiver":{"id":"9103b894-9043-48c8-84be-49c3b3a24981","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":72,"line":61,"offset":1389},"start":{"column":68,"line":61,"offset":1385}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1402},"start":{"column":68,"line":61,"offset":1385}}}],"id":"79158778-43af-4ec1-80b9-76e96d95fc57","message":"&&","metadata":[],"receiver":{"args":[],"id":"c6110a81-4e17-43f4-b55d-90c1fb043d98","message":"intensidadElevada","metadata":[],"receiver":{"id":"e4aefea2-92d4-42ed-a7df-f0a65131fe1e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":61,"offset":1361},"start":{"column":40,"line":61,"offset":1357}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":64,"line":61,"offset":1381},"start":{"column":40,"line":61,"offset":1357}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1402},"start":{"column":40,"line":61,"offset":1357}}}}],"sourceMap":{"end":{"column":85,"line":61,"offset":1402},"start":{"column":40,"line":61,"offset":1357}}},"id":"1d966631-ac8e-4a71-a7ac-e3678243c409","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":85,"line":61,"offset":1402},"start":{"column":5,"line":61,"offset":1322}}},{"body":{"id":"e217ac6b-edf0-4e66-a823-d24b73b16404","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e1db983e-d930-497c-9c46-2940489d10db","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"8830d8a6-8387-4f96-9e5f-5512ed9c6bf9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1454},"start":{"column":48,"line":63,"offset":1453}},"value":0}],"id":"61ad447e-2886-4366-925b-5bef4abbe521","message":"==","metadata":[],"receiver":{"args":[{"id":"f65b60bb-6b02-4c80-8f79-e3df637b0c77","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1449},"start":{"column":43,"line":63,"offset":1448}},"value":2}],"id":"7b6b32c3-f652-44a7-ae60-178340749984","message":"%","metadata":[],"receiver":{"id":"3f5f4aff-894d-42d1-bee8-9fdfb88b8193","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":42,"line":63,"offset":1447},"start":{"column":27,"line":63,"offset":1432}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":44,"line":63,"offset":1449},"start":{"column":27,"line":63,"offset":1432}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1454},"start":{"column":27,"line":63,"offset":1432}}}}],"sourceMap":{"end":{"column":49,"line":63,"offset":1454},"start":{"column":27,"line":63,"offset":1432}}},"id":"98853472-cc48-4d86-b5e3-9bb2592e7a86","isOverride":false,"metadata":[],"name":"eventosPar","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":63,"offset":1454},"start":{"column":5,"line":63,"offset":1410}}}],"metadata":[],"name":"Alegria","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":6,"line":65,"offset":1463},"start":{"column":1,"line":57,"offset":1204}},"supertypes":[{"args":[],"id":"2f718c21-41ce-4000-9f4a-c0df2bdb8b35","metadata":[],"reference":{"id":"2f365719-4bdb-4d63-a4fa-8136c773d385","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1234},"start":{"column":24,"line":57,"offset":1227}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":57,"offset":1234},"start":{"column":24,"line":57,"offset":1227}}}]},{"id":"c6581a03-9418-4fc0-9b4c-2e3e3fb3cba8","members":[{"id":"f2fef324-5e14-43c1-8b5d-48d383bcc228","isConstant":true,"isProperty":false,"metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":16,"line":68,"offset":1516},"start":{"column":5,"line":68,"offset":1505}},"value":{"id":"fbde0b09-37e8-4661-af73-4c48f5a9eb4e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"2612bce3-dd1c-4ea0-bdf9-ce3701c9255a","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"e111a031-fab1-4a59-8d1e-50b6a8f60b8f","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"814374ba-a31d-4efc-b38e-a1ce438ea64b","metadata":[],"name":"valor","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1558},"start":{"column":36,"line":69,"offset":1553}}}}],"sourceMap":{"end":{"column":41,"line":69,"offset":1558},"start":{"column":36,"line":69,"offset":1553}}},"id":"bec9cec2-1628-4530-b10a-bc674f68bba7","isOverride":true,"metadata":[],"name":"intensidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":41,"line":69,"offset":1558},"start":{"column":5,"line":69,"offset":1522}}},{"id":"61604fc4-502f-406e-b058-bc9e22633a76","isConstant":false,"isProperty":true,"metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1603},"start":{"column":5,"line":71,"offset":1570}},"value":{"id":"556b4209-60c5-48d9-a147-0d3a342fdad5","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":71,"offset":1603},"start":{"column":26,"line":71,"offset":1591}},"value":"melancolia"}},{"body":{"id":"c4b56163-08b0-4ed4-b5c4-a297c04ec1b1","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"6a3b61d3-aeac-4b93-9475-2c0aa4aa1bc2","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"76f20c68-8906-439d-bf49-fe7fe22a48df","message":"intensidadElevada","metadata":[],"receiver":{"id":"9b93e3da-fbf9-4d9c-afe1-90bce9c5e3c9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":69,"line":72,"offset":1673},"start":{"column":65,"line":72,"offset":1669}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1693},"start":{"column":65,"line":72,"offset":1669}}}],"id":"5b8304db-dff3-4051-beef-016d8b3758f3","message":"&&","metadata":[],"receiver":{"args":[{"id":"b22972e8-68eb-4101-b0d7-0edbd1fbb7a8","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1665},"start":{"column":49,"line":72,"offset":1653}},"value":"melancolia"}],"id":"0b81d9a3-e67c-4446-8874-bb41ca9e4713","message":"!=","metadata":[],"receiver":{"id":"f2d4f037-c831-4b27-a3a5-c7a533d6fc94","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":45,"line":72,"offset":1649},"start":{"column":40,"line":72,"offset":1644}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":61,"line":72,"offset":1665},"start":{"column":40,"line":72,"offset":1644}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1693},"start":{"column":40,"line":72,"offset":1644}}}}],"sourceMap":{"end":{"column":89,"line":72,"offset":1693},"start":{"column":40,"line":72,"offset":1644}}},"id":"ce49fb9b-250f-40ef-b74a-c7735bac6d34","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":89,"line":72,"offset":1693},"start":{"column":5,"line":72,"offset":1609}}},{"body":{"id":"16c47f48-9797-482f-b1f3-2174240f0f69","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"82b91499-255b-4043-8f7a-774f3a9c040e","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":74,"offset":1753},"start":{"column":15,"line":74,"offset":1747}}}],"id":"55ebed48-881e-4f5d-91e1-5432410b1703","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":74,"offset":1754},"start":{"column":9,"line":74,"offset":1741}}},{"id":"78d9733a-5ca3-4cc1-a291-da3a3ff0236c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1792},"start":{"column":9,"line":75,"offset":1764}},"value":{"args":[],"id":"c4621d66-f5b2-4074-9b6d-2b5270218e99","message":"descripcion","metadata":[],"receiver":{"id":"9ded1f7a-d08f-4cda-8b8b-83fbd87448d0","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":23,"line":75,"offset":1778},"start":{"column":17,"line":75,"offset":1772}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":37,"line":75,"offset":1792},"start":{"column":17,"line":75,"offset":1772}}},"variable":{"id":"d413d357-c482-4d47-a5b9-e7d0ae089388","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":14,"line":75,"offset":1769},"start":{"column":9,"line":75,"offset":1764}}}}],"sourceMap":{"end":{"column":6,"line":76,"offset":1799},"start":{"column":36,"line":73,"offset":1730}}},"id":"79c99b31-f324-433a-9f4f-9e6a8f18fe13","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"d2d07560-486b-45f5-b307-32966c56b2f8","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":73,"offset":1729},"start":{"column":29,"line":73,"offset":1723}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":76,"offset":1799},"start":{"column":5,"line":73,"offset":1699}}},{"body":{"id":"6fe5396d-7dc1-4dfe-80c9-3a87e1e3d68e","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b91eaa8d-d278-4e23-96af-68149bcd3c90","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ac6bf643-26a2-40fa-ba0b-2f8f31d1a7e4","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"dcb6eaeb-570d-4e6f-b0e2-dc2b945ab5b2","isOverride":false,"metadata":[],"name":"causa","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"6b530931-8d06-46fd-8d62-c0e272890113","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"4582121b-e613-475e-9d3d-e9455c4c77d9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"54380402-e5c3-44cf-9f4b-6bd7c884034e","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"fe728481-7a76-41d3-a709-3b549329b8e0","metadata":[],"name":"causa","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"c0e6ade5-a10f-45e7-b49c-5c223a28673c","isOverride":false,"metadata":[],"name":"causa","parameters":[{"id":"5acb7826-af8d-4cc5-948d-533de2aa1bd7","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Tristeza","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":77,"offset":1802},"start":{"column":1,"line":67,"offset":1467}},"supertypes":[{"args":[],"id":"e6105213-6c84-43d6-ac4f-b044b76e73ab","metadata":[],"reference":{"id":"250806ed-ba42-49ce-b8a8-553d5ba7da74","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1498},"start":{"column":25,"line":67,"offset":1491}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":67,"offset":1498},"start":{"column":25,"line":67,"offset":1491}}}]},{"id":"88bcccf7-3f8e-4a63-aaee-a154435b279e","members":[{"body":{"id":"dfe54e96-4eff-4747-9841-c35f24ea0596","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"84e90d78-62c0-4974-b8d0-19fc08a9a908","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"args":[],"id":"6f737c24-b6a1-4931-a88d-022d6e4a7e37","message":"intensidadElevada","metadata":[],"receiver":{"id":"ee4e632a-7822-43f3-b160-35d2b5dd3a08","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":76,"line":80,"offset":1922},"start":{"column":72,"line":80,"offset":1918}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1942},"start":{"column":72,"line":80,"offset":1918}}}],"id":"b7244930-99cc-4bda-b102-3bc2371efd36","message":"&&","metadata":[],"receiver":{"args":[{"id":"21a6e11b-4800-4ffb-9509-21b9e22fd763","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1914},"start":{"column":58,"line":80,"offset":1904}}}],"id":"f7893ecb-992f-44e5-8880-8a1767c260b0","message":">","metadata":[],"receiver":{"id":"15de932f-389a-4fd6-ad7d-15fbdfc0a426","metadata":[],"name":"cantidadEventos","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":55,"line":80,"offset":1901},"start":{"column":40,"line":80,"offset":1886}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":68,"line":80,"offset":1914},"start":{"column":40,"line":80,"offset":1886}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1942},"start":{"column":40,"line":80,"offset":1886}}}}],"sourceMap":{"end":{"column":96,"line":80,"offset":1942},"start":{"column":40,"line":80,"offset":1886}}},"id":"40a6e4e7-cf75-4897-9287-4e36575a66c1","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":96,"line":80,"offset":1942},"start":{"column":5,"line":80,"offset":1851}}}],"metadata":[{"args":{"position":"end","text":"//Se libera si el impacto de la última emocion fue mayor al criterio de intensidad"},"name":"comment"}],"name":"DesagradoYtemor","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":81,"offset":1945},"start":{"column":1,"line":79,"offset":1806}},"supertypes":[{"args":[],"id":"6a4c6fac-0a65-477f-a8c0-9368de34bd14","metadata":[],"reference":{"id":"0ad0b34e-2909-4006-8e31-851a011fd02d","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1844},"start":{"column":32,"line":79,"offset":1837}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":79,"offset":1844},"start":{"column":32,"line":79,"offset":1837}}}]},{"id":"7d149c5c-1ef1-46dc-a2f5-bd5fc50f41e4","members":[{"id":"21fed3bc-94e7-40c3-ad75-8bf0d4d8f60f","isConstant":false,"isProperty":true,"metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2097},"start":{"column":5,"line":85,"offset":2071}},"value":{"id":"048b43c8-2478-4f6e-9320-272379d280d9","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":31,"line":85,"offset":2097},"start":{"column":29,"line":85,"offset":2095}},"value":10}},{"body":{"id":"3bce8bee-29ec-4040-9b3c-761fef8cbd94","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"b452d7ee-81f9-428b-91ad-731a2c1dc505","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"ba6bff83-e284-4861-a0f3-ea4291ba24dd","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2127},"start":{"column":26,"line":86,"offset":2124}},"value":100}}],"sourceMap":{"end":{"column":29,"line":86,"offset":2127},"start":{"column":26,"line":86,"offset":2124}}},"id":"cc4d51ee-3ccb-4c26-b5cc-281426e0c9d3","isOverride":false,"metadata":[],"name":"intesidad","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":29,"line":86,"offset":2127},"start":{"column":5,"line":86,"offset":2103}}},{"body":{"id":"6678f698-b216-40b2-b3cd-6a9de240cdff","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"49c02916-5cc8-4554-81c5-f431deac0393","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"args":[{"id":"7878db66-06e4-4e64-9f52-2af50e07b543","metadata":[],"name":"criterioIntensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2198},"start":{"column":52,"line":87,"offset":2180}}}],"id":"0591715a-f962-4b4b-a9c9-afc2b45f02e9","message":">","metadata":[],"receiver":{"id":"4214fa94-0408-4fcd-b510-b05a7c19d6e2","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":49,"line":87,"offset":2177},"start":{"column":41,"line":87,"offset":2169}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2198},"start":{"column":41,"line":87,"offset":2169}}}}],"sourceMap":{"end":{"column":70,"line":87,"offset":2198},"start":{"column":41,"line":87,"offset":2169}}},"id":"ca67cf4a-047f-4e45-849d-6728193d16d4","isOverride":true,"metadata":[],"name":"puedeLiberarse","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":70,"line":87,"offset":2198},"start":{"column":5,"line":87,"offset":2133}}},{"body":{"id":"46724f45-5777-4e6e-ba14-fcd845f09f90","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"args":[{"id":"a7962965-1120-44b7-85a8-e26fad3d1f2e","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":21,"line":89,"offset":2258},"start":{"column":15,"line":89,"offset":2252}}}],"id":"53be7129-b104-4755-b478-4eb7acba97c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":89,"offset":2259},"start":{"column":9,"line":89,"offset":2246}}},{"id":"8f9ee056-d996-4a41-8089-bd6eec3ccd45","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2296},"start":{"column":9,"line":90,"offset":2269}},"value":{"args":[],"id":"aed1c5a3-5298-4462-be31-fe9df13e4deb","message":"impacto","metadata":[],"receiver":{"id":"b6fc1aa2-f8e6-453e-821d-60e889c109e3","metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":26,"line":90,"offset":2286},"start":{"column":20,"line":90,"offset":2280}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":36,"line":90,"offset":2296},"start":{"column":20,"line":90,"offset":2280}}},"variable":{"id":"681c5ca3-c804-43b4-a6fa-424c1db863e5","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":17,"line":90,"offset":2277},"start":{"column":9,"line":90,"offset":2269}}}}],"sourceMap":{"end":{"column":6,"line":91,"offset":2303},"start":{"column":36,"line":88,"offset":2235}}},"id":"52a56f6b-b14f-4071-b5a3-056b2f8182a0","isOverride":true,"metadata":[],"name":"liberar","parameters":[{"id":"bf014f3e-55ed-4869-99eb-eca97deda390","isVarArg":false,"metadata":[],"name":"evento","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":35,"line":88,"offset":2234},"start":{"column":29,"line":88,"offset":2228}}}],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":6,"line":91,"offset":2303},"start":{"column":5,"line":88,"offset":2204}}},{"body":{"id":"b1d84509-c3f3-43c3-919a-22f1b3bc5596","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"98e6fab2-8918-44ba-8f74-59c492811e21","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"2f92ae17-b6ea-4c81-9dfd-21799cd84bee","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"7d31aeb6-b582-4db1-96eb-e3647776ab5b","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}},{"body":{"id":"ecd8482f-bba3-425e-9f17-aeb88feb111c","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"68e1c9ef-b725-45ac-93ee-97be1c1c9f9b","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"33c5509f-137e-4869-89e1-2f76a7a9a19a","metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"variable":{"id":"fd4aacc3-7d68-47c4-8fe2-1f8b9e5f3590","metadata":[],"name":"recuerdo","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"2d8881b4-52a5-48ed-aa76-c729629f5c9a","isOverride":false,"metadata":[],"name":"recuerdo","parameters":[{"id":"13e2636c-0aa5-44f3-bab2-ecdbb9d27492","isVarArg":false,"metadata":[],"name":"","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Especial","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":92,"offset":2306},"start":{"column":1,"line":84,"offset":2033}},"supertypes":[{"args":[],"id":"9b07287e-4d27-46c3-9304-9c7b026e7ab1","metadata":[],"reference":{"id":"1bff685e-6e55-492c-9004-4a2656acf405","metadata":[],"name":"Emocion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2064},"start":{"column":25,"line":84,"offset":2057}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":84,"offset":2064},"start":{"column":25,"line":84,"offset":2057}}}]},{"id":"8f31662b-99ed-4f4a-aadc-9cb4ae6d3445","members":[{"id":"9c2af56f-b81d-464c-9443-5d83d26f8720","isConstant":true,"isProperty":true,"metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":27,"line":95,"offset":2351},"start":{"column":5,"line":95,"offset":2329}},"value":{"id":"dd86d584-073d-4ac5-b28c-b4e6391a3006","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"id":"ccd40b6e-83e5-40ba-8cbc-4ccb35ad2649","isConstant":true,"isProperty":false,"metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":22,"line":96,"offset":2374},"start":{"column":5,"line":96,"offset":2357}},"value":{"id":"14ca9877-155c-4a34-b0e3-6c0abee50640","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}},{"body":{"id":"8b385f75-abee-44bd-85eb-8e84a67a1718","metadata":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"8e1cc51c-d1a5-478c-a286-2cf639558076","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"e6113a5a-6c90-4490-8f96-0810b0c5c06e","metadata":[],"name":"descripcion","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2416},"start":{"column":28,"line":98,"offset":2405}}}}],"sourceMap":{"end":{"column":39,"line":98,"offset":2416},"start":{"column":28,"line":98,"offset":2405}}},"id":"1d4d4983-aecd-40e5-ba4f-3d78aeb0dda8","isOverride":false,"metadata":[],"name":"descripcion","parameters":[],"problems":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":39,"line":98,"offset":2416},"start":{"column":5,"line":98,"offset":2382}}},{"body":{"id":"d62a721e-4dc8-4559-ba79-206b3cf90d86","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"2bb9af7e-dcfa-4877-abf7-f499176da3c3","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":{"id":"728c7d8a-a744-4aee-88fd-9c7afec4e9ff","metadata":[],"name":"impacto","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}}}]},"id":"5499a561-9040-48cc-ab8f-cf87f1a16a4a","isOverride":false,"metadata":[],"name":"impacto","parameters":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]}}],"metadata":[],"name":"Evento","problems":[],"scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"sourceMap":{"end":{"column":2,"line":99,"offset":2420},"start":{"column":1,"line":94,"offset":2310}},"supertypes":[]},{"id":"6ed70949-b383-41aa-8b7a-74430a2b1097","isConstant":true,"metadata":[],"name":"new","scope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":10,"line":101,"offset":2433},"start":{"column":1,"line":101,"offset":2424}},"value":{"id":"a2316f5e-3153-4031-8968-b5403217f8af","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"value":null}}],"metadata":[],"name":"intensamente","problems":[{"code":"malformedEntity","sourceMap":{"end":{"column":23,"line":101,"offset":2446},"start":{"column":11,"line":101,"offset":2434}}}],"scope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:48.176Z"} diff --git a/log/wollok7.log b/log/wollok7.log new file mode 100644 index 0000000..79d6323 --- /dev/null +++ b/log/wollok7.log @@ -0,0 +1,1574 @@ +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:09:49.841Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:09:50.761Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:09:50.864Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T14:09:52.392Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:09:52.816Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T14:09:57.507Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:09:57.633Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:09:58.084Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion [Variable]{c29818} at intensamente.wlk:101 exhausted all cases without a match intensamente.emocion [Variable]{c29818} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.emocion [Variable]{c29818} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:09:58.721Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:58.813Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:58.813Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:09:59.257Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:10:00.343Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emocion [Variable]{afff2b} at intensamente.wlk:101 exhausted all cases without a match intensamente.emocion [Variable]{afff2b} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.emocion [Variable]{afff2b} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:10:00.534Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:10:00.720Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T14:10:04.195Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T14:10:04.324Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:10:04.548Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:10:04.766Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:10:05.408Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:10:06.379Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:10:06.577Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:10:07.803Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:10:09.578Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T14:12:12.477Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:12:15.884Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:12:15.991Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:12:18.396Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:12:18.500Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:12:20.220Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:20.222Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:12:20.423Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:20.424Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T14:12:20.536Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:51.405Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:12:51.525Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:51.525Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T14:12:51.647Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:51.724Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:51.795Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":161,"timestamp":"2024-11-22T14:12:51.957Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:12:52.127Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T14:12:56.527Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion({\n | ^\n 50 | intensidad=100\n 51 | const palabrotas=[]\n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion({\n | ^\n 50 | intensidad=100\n 51 | const palabrotas=[]\n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:12:59.239Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:13:02.500Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T14:13:04.436Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:13:04.554Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T14:13:06.460Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:13:06.566Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(=100){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(=100){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:26.860Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(100){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(100){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:27.291Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(00){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(00){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:27.481Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(0){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(0){\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:27.630Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion({\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion({\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:27.929Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(({\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion(({\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:28.960Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion({\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | }\n 48 | \n> 49 | class Furia inherits Emocion({\n | ^\n 50 | const palabrotas=[]\n 51 | \n\nExpected one of the following: \n\n')', '@', comment, identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:14:29.726Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:31.821Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:31.900Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:14:32.004Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:32.101Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:32.177Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:14:32.710Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:32.711Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T14:14:32.823Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:14:33.166Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":215,"timestamp":"2024-11-22T14:14:33.643Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:14:34.769Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:14:35.386Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T14:14:39.186Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T14:14:39.409Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:39.409Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:39.491Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:14:39.699Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:39.699Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:14:39.800Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:39.880Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:39.949Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:14:40.631Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:14:59.520Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:14:59.623Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:15:00.518Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:01.060Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:15:02.210Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:02.210Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:02.282Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T14:15:02.401Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:02.496Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:02.660Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:02.740Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T14:15:02.862Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:03.136Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:03.207Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:15:03.309Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":149,"timestamp":"2024-11-22T14:15:04.131Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T14:15:04.428Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.override [Field]{4c25e4} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.override [Field]{4c25e4} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.override [Field]{4c25e4} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:04.512Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:04.676Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:04.837Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.in [Field]{749d06} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.in [Field]{749d06} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.in [Field]{749d06} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:04.922Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:15:05.195Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intes [Field]{af6316} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intes [Field]{af6316} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intes [Field]{af6316} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:05.512Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:15:05.619Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidad [Field]{f171ce} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidad [Field]{f171ce} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidad [Field]{f171ce} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:05.997Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadP [Field]{9d7392} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadP [Field]{9d7392} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadP [Field]{9d7392} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:06.430Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadi [Field]{74b7e2} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadi [Field]{74b7e2} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadi [Field]{74b7e2} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:07.448Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadiN [Field]{109e2a} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadiN [Field]{109e2a} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadiN [Field]{109e2a} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:07.662Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":146,"timestamp":"2024-11-22T14:15:07.808Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadI [Field]{43fc8c} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadI [Field]{43fc8c} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadI [Field]{43fc8c} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:08.606Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadIng [Field]{ddb599} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadIng [Field]{ddb599} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadIng [Field]{ddb599} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:08.886Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T14:15:09.094Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadIngr [Field]{fe9328} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadIngr [Field]{fe9328} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadIngr [Field]{fe9328} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:09.187Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadIngres [Field]{5bae11} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadIngres [Field]{5bae11} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadIngres [Field]{5bae11} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:09.430Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Alegria.intesidadIngresad [Field]{c6e6ef} at intensamente.wlk:59 exhausted all cases without a match intensamente.Alegria.intesidadIngresad [Field]{c6e6ef} at intensamente.wlk:59 exhausted all cases without a match","stack":"Error: intensamente.Alegria.intesidadIngresad [Field]{c6e6ef} at intensamente.wlk:59 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:09.785Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{6525b2} at intensamente.wlk:60 exhausted all cases without a match [Parameter]{6525b2} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [Parameter]{6525b2} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:15:17.673Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:17.769Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:17.843Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T14:15:18.551Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:15:25.722Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:15:25.838Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:26.278Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:26.362Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:26.523Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:26.585Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:26.843Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:15:28.645Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:15:28.776Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 64 | method eventosPar() = cantidadEventos%2 == 0\n 65 | \n> 66 | }\n | ^\n 67 | \n 68 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 64 | method eventosPar() = cantidadEventos%2 == 0\n 65 | \n> 66 | }\n | ^\n 67 | \n 68 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:15:29.536Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 64 | method eventosPar() = cantidadEventos%2 == 0\n 65 | \n> 66 | }\n | ^\n 67 | \n 68 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 64 | method eventosPar() = cantidadEventos%2 == 0\n 65 | \n> 66 | }\n | ^\n 67 | \n 68 | class Tristeza inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:15:30.652Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:15:34.956Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:15:58.913Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:15:59.016Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:15:59.129Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:15:59.233Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:15:59.893Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T14:16:00.018Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:00.018Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:00.092Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:16:00.195Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:16:00.408Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:00.408Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:16:00.517Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method\n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:16:00.525Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:00.525Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | method \n 48 | \n> 49 | }\n | ^\n 50 | \n 51 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'!=', '!==', '%', '&&', '*', '**', '+', '-', '->', '..', '..<', '/', '<', '<<', '<<<', '<=', '<=>', '<>', '==', '===', '>', '>..', '>=', '>>', '>>>', '?:', 'and', 'invert', 'negate', 'or', 'plus', '||', identifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:16:00.532Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:00.533Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:16:02.046Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:16:02.392Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:02.836Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:16:02.952Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:16:03.219Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:16:04.427Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:16:05.083Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:16:06.805Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{229a2d} at intensamente.wlk:47 exhausted all cases without a match [Parameter]{229a2d} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Parameter]{229a2d} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:16:08.672Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":135,"timestamp":"2024-11-22T14:16:08.976Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{bd3726} at intensamente.wlk:47 exhausted all cases without a match [Parameter]{bd3726} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Parameter]{bd3726} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:16:09.057Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:09.151Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{224822} at intensamente.wlk:47 exhausted all cases without a match [Parameter]{224822} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Parameter]{224822} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:16:09.552Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:09.645Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{4262ed} at intensamente.wlk:47 exhausted all cases without a match [Parameter]{4262ed} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Parameter]{4262ed} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:16:09.935Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{508ab2} at intensamente.wlk:47 exhausted all cases without a match [Parameter]{508ab2} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Parameter]{508ab2} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:16:10.195Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T14:16:10.401Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:16:11.082Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{a5dfa4} at intensamente.wlk:-- exhausted all cases without a match [Return]{a5dfa4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{a5dfa4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:16:12.146Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:16:12.237Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:16:12.487Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:16:13.249Z"} +{"level":"info","message":"onRequest - STRONG_FILES_CHANGED:c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer\\example.wlk","timestamp":"2024-11-22T14:16:40.100Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T14:16:40.243Z"} +{"level":"info","message":"onRequest - WORKSPACE_URI:file:///c%3A/Users/Dell/Desktop/2024-parcial-o-EitanFiszer","timestamp":"2024-11-22T14:16:40.413Z"} +{"level":"info","message":"Removing diagnostics from \\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer\\example.wlk","timestamp":"2024-11-22T14:16:40.434Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:17:04.068Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:17:08.122Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:17:09.444Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f7c4a0} at intensamente.wlk:-- exhausted all cases without a match [Send]{f7c4a0} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{f7c4a0} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:12.286Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{cfc5a9} at intensamente.wlk:47 exhausted all cases without a match [Assignment]{cfc5a9} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Assignment]{cfc5a9} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:17:12.286Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:12.374Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:12.509Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:12.597Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f49797} at intensamente.wlk:-- exhausted all cases without a match [Send]{f49797} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{f49797} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:12.769Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{40233e} at intensamente.wlk:47 exhausted all cases without a match [Assignment]{40233e} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Assignment]{40233e} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:17:12.770Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:17:13.217Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{28864f} at intensamente.wlk:-- exhausted all cases without a match [Send]{28864f} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{28864f} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:13.233Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{1b6356} at intensamente.wlk:47 exhausted all cases without a match [Assignment]{1b6356} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Assignment]{1b6356} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:17:13.233Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T14:17:13.813Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{16c2c4} at intensamente.wlk:-- exhausted all cases without a match [Send]{16c2c4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Send]{16c2c4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:14.621Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{9b620b} at intensamente.wlk:47 exhausted all cases without a match [Assignment]{9b620b} at intensamente.wlk:47 exhausted all cases without a match","stack":"Error: [Assignment]{9b620b} at intensamente.wlk:47 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:17:14.621Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:14.706Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:15.043Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:17:15.488Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:17:26.526Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{5932dd} at intensamente.wlk:40 exhausted all cases without a match [If]{5932dd} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{5932dd} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:17:28.695Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:28.788Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:28.878Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:17:29.507Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:17:29.615Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:17:29.949Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{541e8b} at intensamente.wlk:40 exhausted all cases without a match [If]{541e8b} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{541e8b} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:17:31.285Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:31.375Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:31.439Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:31.633Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":127,"timestamp":"2024-11-22T14:17:31.761Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":149,"timestamp":"2024-11-22T14:17:33.762Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:17:33.874Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:17:35.399Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{a79470} at intensamente.wlk:41 exhausted all cases without a match [If]{a79470} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [If]{a79470} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:17:36.162Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:37.398Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T14:17:37.536Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:37.536Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":151,"timestamp":"2024-11-22T14:17:37.687Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:37.772Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:17:37.879Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:37.882Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:38.047Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:38.119Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:17:38.223Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:38.480Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{2b69ad} at intensamente.wlk:41 exhausted all cases without a match [If]{2b69ad} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [If]{2b69ad} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:17:38.652Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:17:38.906Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:17:40.111Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:17:41.457Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{6b6d96} at intensamente.wlk:41 exhausted all cases without a match [If]{6b6d96} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [If]{6b6d96} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:41.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:41.576Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:41.645Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:41.717Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:41.978Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:42.043Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T14:17:42.745Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:42.746Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{92db33} at intensamente.wlk:41 exhausted all cases without a match [If]{92db33} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [If]{92db33} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:43.202Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T14:17:43.318Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:43.319Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:44.012Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:44.168Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:44.328Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T14:17:47.000Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:17:48.117Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{a68c8a} at intensamente.wlk:41 exhausted all cases without a match [If]{a68c8a} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [If]{a68c8a} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:17:53.028Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:17:54.344Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:17:59.188Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8a363a} at intensamente.wlk:42 exhausted all cases without a match [Send]{8a363a} at intensamente.wlk:42 exhausted all cases without a match","stack":"Error: [Send]{8a363a} at intensamente.wlk:42 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:04.209Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{927725} at intensamente.wlk:41 exhausted all cases without a match [If]{927725} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [If]{927725} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T14:18:04.209Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:04.309Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:18:04.411Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:04.411Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:04.483Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:18:04.673Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:04.674Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:04.846Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T14:18:04.970Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:05.063Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T14:18:05.175Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:05.457Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:05.528Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:18:05.737Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:05.737Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:18:05.839Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:18:06.241Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T14:18:07.976Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:18:08.080Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T14:18:11.127Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T14:18:12.558Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":152,"timestamp":"2024-11-22T14:18:12.712Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T14:18:14.503Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:18:15.036Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{02f5fd} at intensamente.wlk:40 exhausted all cases without a match [If]{02f5fd} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{02f5fd} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:17.959Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:18.052Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:18.127Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:18:18.230Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:18.293Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{303dd0} at intensamente.wlk:40 exhausted all cases without a match [If]{303dd0} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{303dd0} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:19.680Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:18:19.874Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{70da43} at intensamente.wlk:40 exhausted all cases without a match [If]{70da43} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{70da43} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:19.893Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{0fa4ea} at intensamente.wlk:40 exhausted all cases without a match [If]{0fa4ea} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{0fa4ea} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:20.128Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{deca8e} at intensamente.wlk:40 exhausted all cases without a match [If]{deca8e} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{deca8e} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:20.400Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{00a82d} at intensamente.wlk:40 exhausted all cases without a match [If]{00a82d} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{00a82d} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:20.643Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{f692ff} at intensamente.wlk:40 exhausted all cases without a match [If]{f692ff} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{f692ff} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)","timestamp":"2024-11-22T14:18:21.012Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:18:21.211Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{5c2ede} at intensamente.wlk:40 exhausted all cases without a match [If]{5c2ede} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{5c2ede} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:22.123Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{a3e0b1} at intensamente.wlk:40 exhausted all cases without a match [If]{a3e0b1} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{a3e0b1} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:22.523Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{1ba0f4} at intensamente.wlk:40 exhausted all cases without a match [If]{1ba0f4} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{1ba0f4} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:22.875Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T14:18:23.556Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{00b83f} at intensamente.wlk:40 exhausted all cases without a match [If]{00b83f} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{00b83f} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:24.137Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:18:24.244Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:24.245Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:24.314Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:24.409Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T14:18:24.522Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:24.591Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:24.844Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:18:24.958Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:24.959Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:18:25.063Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:25.362Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:25.528Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:25.784Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T14:18:37.290Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:37.400Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{7239b5} at intensamente.wlk:40 exhausted all cases without a match [If]{7239b5} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{7239b5} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:37.415Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:37.421Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:37.492Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:37.493Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:37.792Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:37.792Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:38.073Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:38.226Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:38.529Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{57164f} at intensamente.wlk:40 exhausted all cases without a match [If]{57164f} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{57164f} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:38.545Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:38.549Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:41.356Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:41.369Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:41.380Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:41.585Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:41.603Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:41.654Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:41.669Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:42.119Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:42.538Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:42.552Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:42.560Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:42.748Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:42.769Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:42.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:42.950Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:43.139Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:43.152Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:43.395Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:43.540Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:43.658Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:44.233Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:44.440Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{4f7953} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:44.460Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:44.477Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:44.739Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:45.002Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:45.124Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:45.232Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:45.334Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:45.705Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:45.798Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:45.798Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:18:45.978Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:45.979Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{9d2852} at intensamente.wlk:41 exhausted all cases without a match [Assignment]{9d2852} at intensamente.wlk:41 exhausted all cases without a match","stack":"Error: [Assignment]{9d2852} at intensamente.wlk:41 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:49.810Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{824498} at intensamente.wlk:40 exhausted all cases without a match [If]{824498} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{824498} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)","timestamp":"2024-11-22T14:18:49.810Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:49.961Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:50.130Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:50.193Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":131,"timestamp":"2024-11-22T14:18:50.423Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:50.487Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{2b6e5d} at intensamente.wlk:40 exhausted all cases without a match [If]{2b6e5d} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{2b6e5d} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:53.234Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:18:53.345Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:53.345Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:53.438Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":148,"timestamp":"2024-11-22T14:18:53.587Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:53.587Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:18:53.695Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:54.561Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{a0f599} at intensamente.wlk:40 exhausted all cases without a match [If]{a0f599} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{a0f599} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:18:57.549Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:18:58.290Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:19:00.389Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:19:01.344Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{ae09cc} at intensamente.wlk:40 exhausted all cases without a match [If]{ae09cc} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{ae09cc} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:02.089Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:02.180Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":157,"timestamp":"2024-11-22T14:19:02.337Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{f18c93} at intensamente.wlk:40 exhausted all cases without a match [If]{f18c93} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{f18c93} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:02.357Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{970a9b} at intensamente.wlk:40 exhausted all cases without a match [If]{970a9b} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{970a9b} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:02.536Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{c6471d} at intensamente.wlk:40 exhausted all cases without a match [If]{c6471d} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{c6471d} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:02.747Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:19:03.322Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{efb31a} at intensamente.wlk:40 exhausted all cases without a match [If]{efb31a} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{efb31a} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:03.337Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{8bce06} at intensamente.wlk:40 exhausted all cases without a match [If]{8bce06} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{8bce06} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:03.670Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{d1dcd2} at intensamente.wlk:40 exhausted all cases without a match [If]{d1dcd2} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{d1dcd2} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:04.166Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:19:04.400Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{103c08} at intensamente.wlk:40 exhausted all cases without a match [If]{103c08} at intensamente.wlk:40 exhausted all cases without a match","stack":"Error: [If]{103c08} at intensamente.wlk:40 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:04.419Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:19:22.062Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":209,"timestamp":"2024-11-22T14:19:27.433Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":431,"timestamp":"2024-11-22T14:19:28.940Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":137,"timestamp":"2024-11-22T14:19:31.568Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:31.569Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:31.630Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:31.799Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:31.961Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:32.029Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:32.181Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:19:32.374Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{1b53ac} at intensamente.wlk:-- exhausted all cases without a match [Return]{1b53ac} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{1b53ac} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:42.066Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:42.156Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:42.222Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:42.292Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":149,"timestamp":"2024-11-22T14:19:42.442Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:42.598Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:42.672Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":150,"timestamp":"2024-11-22T14:19:42.910Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:42.911Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:19:43.022Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:43.103Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:43.175Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:43.336Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{dbfd3b} at intensamente.wlk:45 exhausted all cases without a match [Send]{dbfd3b} at intensamente.wlk:45 exhausted all cases without a match","stack":"Error: [Send]{dbfd3b} at intensamente.wlk:45 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:19:43.915Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{c347e4} at intensamente.wlk:-- exhausted all cases without a match [Return]{c347e4} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{c347e4} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:19:43.915Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:44.011Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:19:44.073Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"8139a0ef-fe7d-4017-8f37-deb2244e8d8e","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":61,"line":45,"offset":968},"start":{"column":31,"line":45,"offset":938}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":61,"line":45,"offset":968},"start":{"column":31,"line":45,"offset":938}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)","timestamp":"2024-11-22T14:19:56.907Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"8139a0ef-fe7d-4017-8f37-deb2244e8d8e","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":61,"line":45,"offset":968},"start":{"column":31,"line":45,"offset":938}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":61,"line":45,"offset":968},"start":{"column":31,"line":45,"offset":938}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)","timestamp":"2024-11-22T14:19:58.358Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"8139a0ef-fe7d-4017-8f37-deb2244e8d8e","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":61,"line":45,"offset":968},"start":{"column":31,"line":45,"offset":938}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[],"sourceMap":{"end":{"column":61,"line":45,"offset":968},"start":{"column":31,"line":45,"offset":938}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)","timestamp":"2024-11-22T14:20:00.255Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T14:20:00.862Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:20:03.437Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:20:04.452Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:20:05.585Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:11.514Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:11.738Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:11.961Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:12.696Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | intensidad -= evento.impacto()\n 44 | }\n> 45 | }\n | ^\n 46 | method variarIntesidad(delta) { intensidad += delta }\n 47 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n \", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:13.150Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:20:13.463Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:20:15.669Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:20:21.563Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:45.959Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:20:45.977Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:46.024Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:46.138Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 23 | const integrantes=[]\n 24 | method vivirEvento(evento)= integrantes.forEach({p=>p.hacerEvento(evento)})\n> 25 | }\n | ^\n 26 | class Emocion {\n 27 | \n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:46.269Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:20:50.236Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:20:54.136Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:54.597Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:54.611Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:20:55.083Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.E [Variable]{ff2f2b} at intensamente.wlk:102 exhausted all cases without a match intensamente.E [Variable]{ff2f2b} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.E [Variable]{ff2f2b} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:20:55.355Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Ev [Variable]{1d7e56} at intensamente.wlk:102 exhausted all cases without a match intensamente.Ev [Variable]{1d7e56} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.Ev [Variable]{1d7e56} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:20:55.682Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Eve [Variable]{93e121} at intensamente.wlk:102 exhausted all cases without a match intensamente.Eve [Variable]{93e121} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.Eve [Variable]{93e121} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:20:55.853Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.Event [Variable]{06a845} at intensamente.wlk:102 exhausted all cases without a match intensamente.Event [Variable]{06a845} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.Event [Variable]{06a845} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:20:56.175Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:20:56.290Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:21:01.175Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento [Variable]{822c8c} at intensamente.wlk:102 exhausted all cases without a match intensamente.evento [Variable]{822c8c} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.evento [Variable]{822c8c} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:01.261Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento [Variable]{61bca1} at intensamente.wlk:102 exhausted all cases without a match intensamente.evento [Variable]{61bca1} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.evento [Variable]{61bca1} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:03.047Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T14:21:04.421Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:21:06.142Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento [Variable]{5b25ff} at intensamente.wlk:102 exhausted all cases without a match intensamente.evento [Variable]{5b25ff} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.evento [Variable]{5b25ff} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:21:07.113Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:07.208Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento [Variable]{11a52c} at intensamente.wlk:102 exhausted all cases without a match intensamente.evento [Variable]{11a52c} at intensamente.wlk:102 exhausted all cases without a match","stack":"Error: intensamente.evento [Variable]{11a52c} at intensamente.wlk:102 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:21:07.699Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:07.863Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:21:11.377Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":135,"timestamp":"2024-11-22T14:21:11.634Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":181,"timestamp":"2024-11-22T14:21:12.974Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T14:21:13.100Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:14.627Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:14.691Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:14.847Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:21:15.279Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T14:21:16.119Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:21:16.225Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:21:16.499Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:21:16.604Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":153,"timestamp":"2024-11-22T14:21:18.870Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:21:19.494Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T14:21:22.868Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:22.869Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:22.934Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:23.147Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:21:23.409Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:21:23.533Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.em [Variable]{bddcf3} at intensamente.wlk:103 exhausted all cases without a match intensamente.em [Variable]{bddcf3} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.em [Variable]{bddcf3} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:25.812Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.emo [Variable]{446a39} at intensamente.wlk:103 exhausted all cases without a match intensamente.emo [Variable]{446a39} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.emo [Variable]{446a39} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:26.089Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:21:26.588Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.f [Variable]{56c0e9} at intensamente.wlk:103 exhausted all cases without a match intensamente.f [Variable]{56c0e9} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.f [Variable]{56c0e9} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:27.082Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.fu [Variable]{6891f5} at intensamente.wlk:103 exhausted all cases without a match intensamente.fu [Variable]{6891f5} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.fu [Variable]{6891f5} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:27.259Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.fura [Variable]{cdd1a0} at intensamente.wlk:103 exhausted all cases without a match intensamente.fura [Variable]{cdd1a0} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.fura [Variable]{cdd1a0} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:27.587Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.fura1 [Variable]{cdfea8} at intensamente.wlk:103 exhausted all cases without a match intensamente.fura1 [Variable]{cdfea8} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.fura1 [Variable]{cdfea8} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:27.770Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:21:28.517Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":169,"timestamp":"2024-11-22T14:21:28.806Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.fura1 [Variable]{803dba} at intensamente.wlk:103 exhausted all cases without a match intensamente.fura1 [Variable]{803dba} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.fura1 [Variable]{803dba} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:21:28.826Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":190,"timestamp":"2024-11-22T14:21:29.017Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:29.105Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T14:21:30.221Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:21:30.647Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.furi [Variable]{1a142e} at intensamente.wlk:103 exhausted all cases without a match intensamente.furi [Variable]{1a142e} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.furi [Variable]{1a142e} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:31.222Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.furia [Variable]{00a34a} at intensamente.wlk:103 exhausted all cases without a match intensamente.furia [Variable]{00a34a} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.furia [Variable]{00a34a} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:21:31.395Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:21:32.504Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:21:32.605Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.furia [Variable]{c09afd} at intensamente.wlk:103 exhausted all cases without a match intensamente.furia [Variable]{c09afd} at intensamente.wlk:103 exhausted all cases without a match","stack":"Error: intensamente.furia [Variable]{c09afd} at intensamente.wlk:103 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:21:32.693Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:32.857Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T14:21:34.320Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:21:34.518Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:21:40.343Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:21:40.571Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:21:44.774Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:21:44.875Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T14:21:46.073Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":173,"timestamp":"2024-11-22T14:21:46.342Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:21:46.452Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T14:21:46.663Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:21:49.648Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:49.715Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:21:50.142Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:21:50.338Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:50.430Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:50.591Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:50.671Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:50.825Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.075Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.146Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.403Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.468Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:21:51.675Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.746Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.820Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:51.978Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:21:52.174Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:21:52.175Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":222,"timestamp":"2024-11-22T14:22:08.266Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T14:22:08.713Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":127,"timestamp":"2024-11-22T14:22:08.840Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":137,"timestamp":"2024-11-22T14:22:09.686Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T14:22:10.786Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T14:22:23.753Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(i){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(i){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:32.771Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [ParameterizedType]{e63944} at intensamente.wlk:48 exhausted all cases without a match [ParameterizedType]{e63944} at intensamente.wlk:48 exhausted all cases without a match","stack":"Error: [ParameterizedType]{e63944} at intensamente.wlk:48 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:22:32.786Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(in){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(in){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.001Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(int){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(int){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.070Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(inte){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(inte){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.134Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intes){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intes){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.366Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesi){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesi){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.468Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesid){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesid){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.558Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesida){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesida){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.687Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:33.772Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad=){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\nexpression, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad=){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\nexpression, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:34.207Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:22:34.642Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T14:22:34.776Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:22:38.897Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad=){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\nexpression, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad=){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\nexpression, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.325Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesidad){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.332Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesida){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesida){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.339Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesid){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesid){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.471Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesi){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intesi){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.675Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intes){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(intes){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.811Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(inte){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(inte){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:39.942Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(int){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(int){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:40.057Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(in){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(in){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:40.239Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(i){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 46 | }\n 47 | \n> 48 | class Furia inherits Emocion(i){\n | ^\n 49 | const palabrotas=[]\n 50 | \n\nExpected one of the following: \n\n'=', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:22:40.361Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:23:17.365Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:23:18.135Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:23:18.241Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | class Furia inherits Emocion()\n> 49 | const palabrotas=[]\n | ^\n 50 | \n 51 | override method puedeLiberarse() = self.tienePalabrota7() and self.intensidadElevada()\n\nExpected one of the following: \n\n'and', '{', whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 47 | \n 48 | class Furia inherits Emocion()\n> 49 | const palabrotas=[]\n | ^\n 50 | \n 51 | override method puedeLiberarse() = self.tienePalabrota7() and self.intensidadElevada()\n\nExpected one of the following: \n\n'and', '{', whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:23:18.565Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | class Alegria inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 52 | method tienePalabrota7() = palabrotas.any{p=>p.size()>7}\n 53 | \n> 54 | }\n | ^\n 55 | \n 56 | class Alegria inherits Emocion{\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:23:19.456Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:23:25.300Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:23:30.805Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:23:30.880Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:23:30.987Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:23:31.946Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:23:32.070Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:23:32.418Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:23:32.491Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:23:32.561Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:23:33.595Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T14:23:33.857Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":146,"timestamp":"2024-11-22T14:23:34.305Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:23:34.423Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:23:34.524Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:23:41.634Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:23:41.744Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:23:42.461Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T14:23:42.581Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:23:42.693Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:23:42.797Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T14:23:43.231Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T14:23:43.446Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:23:43.743Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:24:22.252Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:24:22.461Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:24:22.739Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:24:22.848Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:24:22.958Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T14:25:39.734Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{68eb3e} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{68eb3e} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{68eb3e} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:25:39.759Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:39.859Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e7552d} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{e7552d} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{e7552d} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:25:39.971Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T14:25:40.171Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{992dd9} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{992dd9} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{992dd9} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:25:40.354Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:40.441Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e04546} at intensamente.wlk:36 exhausted all cases without a match [Parameter]{e04546} at intensamente.wlk:36 exhausted all cases without a match","stack":"Error: [Parameter]{e04546} at intensamente.wlk:36 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:25:40.597Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:40.702Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:25:43.267Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b2a1dc} at intensamente.wlk:-- exhausted all cases without a match [Return]{b2a1dc} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b2a1dc} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:25:43.295Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":179,"timestamp":"2024-11-22T14:25:43.569Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:43.569Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:43.746Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:43.817Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:44.157Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:25:46.989Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T14:25:47.104Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:47.171Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:25:47.603Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T14:25:48.117Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:25:48.492Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:48.493Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:25:48.567Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":155,"timestamp":"2024-11-22T14:25:49.587Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:25:49.788Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:25:50.067Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:25:50.496Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:25:51.295Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:26:00.945Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:26:14.803Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', 'const', 'method', 'only', 'override', 'test', 'var', '{', '}', any character/byte, comment, whitespace\n","stack":"Error: Failed to parse testExample.wtest: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\n'@', 'const', 'method', 'only', 'override', 'test', 'var', '{', '}', any character/byte, comment, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:26:20.440Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":123,"timestamp":"2024-11-22T14:26:28.107Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:26:28.623Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:26:30.202Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:26:30.612Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:26:32.191Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:26:32.385Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:26:33.554Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:26:35.092Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T14:26:35.232Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":123,"timestamp":"2024-11-22T14:26:35.355Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:27:45.663Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T14:27:45.782Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:27:45.885Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":131,"timestamp":"2024-11-22T14:27:47.950Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:47.950Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:27:48.052Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:48.148Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:48.241Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:48.327Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T14:27:48.449Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:27:48.467Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:48.467Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:27:48.660Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:48.660Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:48.796Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:27:49.014Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:27:49.212Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:49.212Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:27:49.318Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:49.404Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:49.474Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:49.552Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:49.798Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:49.949Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:27:50.435Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T14:27:51.388Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:27:51.650Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T14:27:53.205Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:27:54.921Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:27:57.509Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:27:59.612Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{085868} at intensamente.wlk:35 exhausted all cases without a match [Parameter]{085868} at intensamente.wlk:35 exhausted all cases without a match","stack":"Error: [Parameter]{085868} at intensamente.wlk:35 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:28:04.803Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{c68257} at intensamente.wlk:35 exhausted all cases without a match [Parameter]{c68257} at intensamente.wlk:35 exhausted all cases without a match","stack":"Error: [Parameter]{c68257} at intensamente.wlk:35 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:28:05.132Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:28:05.227Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{cdd66d} at intensamente.wlk:35 exhausted all cases without a match [Parameter]{cdd66d} at intensamente.wlk:35 exhausted all cases without a match","stack":"Error: [Parameter]{cdd66d} at intensamente.wlk:35 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:28:05.326Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:28:06.413Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":116,"timestamp":"2024-11-22T14:28:06.531Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:29:08.527Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:29:08.629Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:29:10.165Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:11.024Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T14:29:12.074Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:29:18.351Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 43 | \n 44 | method intensidadElevada() = intensidad>criterioIntensidad\n> 45 | }\n | ^\n 46 | \n 47 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:29:23.786Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{f14938} at intensamente.wlk:-- exhausted all cases without a match [Return]{f14938} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{f14938} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:29:24.849Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:24.931Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:25.178Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:29:25.367Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:29:25.471Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:29:25.579Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:29:34.882Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:29:38.225Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:38.226Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":128,"timestamp":"2024-11-22T14:29:38.354Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | \n 46 | method intensidadElevada() = intensidad>criterioIntensidad\n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | \n 46 | method intensidadElevada() = intensidad>criterioIntensidad\n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:29:39.454Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | \n 46 | method intensidadElevada() = intensidad>criterioIntensidad\n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | \n 46 | method intensidadElevada() = intensidad>criterioIntensidad\n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:29:39.510Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:40.046Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{e01980} at intensamente.wlk:37 exhausted all cases without a match [Parameter]{e01980} at intensamente.wlk:37 exhausted all cases without a match","stack":"Error: [Parameter]{e01980} at intensamente.wlk:37 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:29:42.029Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:42.114Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | \n 46 | method intensidadElevada() = intensidad>criterioIntensidad\n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\n 45 | \n 46 | method intensidadElevada() = intensidad>criterioIntensidad\n> 47 | }\n | ^\n 48 | \n 49 | class Furia inherits Emocion(){\n\nExpected one of the following: \n\n'@', 'class', 'const', 'describe', 'mixin', 'object', 'only', 'package', 'program', 'test', 'var', '{', EOF, comment, not \"}\r\n\r\n\", whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T14:29:43.195Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{b9d5da} at intensamente.wlk:-- exhausted all cases without a match [Return]{b9d5da} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{b9d5da} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:29:43.564Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:29:43.646Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:29:53.154Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T14:29:53.290Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T14:29:53.547Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T14:30:40.768Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{5f0809} at intensamente.wlk:-- exhausted all cases without a match [Return]{5f0809} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{5f0809} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:30:43.819Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:30:43.939Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:30:43.940Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:30:44.116Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:30:44.225Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:30:44.329Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T14:30:44.555Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T14:30:44.773Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{afaecd} at intensamente.wlk:60 exhausted all cases without a match [Send]{afaecd} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [Send]{afaecd} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:31:07.186Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{fcdb05} at intensamente.wlk:-- exhausted all cases without a match [Return]{fcdb05} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{fcdb05} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:31:07.186Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:31:07.271Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:31:07.379Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:31:07.387Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:31:07.469Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:31:07.644Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:31:07.801Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:31:07.963Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{159fd5} at intensamente.wlk:60 exhausted all cases without a match [Send]{159fd5} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [Send]{159fd5} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:31:08.140Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{8ca188} at intensamente.wlk:-- exhausted all cases without a match [Return]{8ca188} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{8ca188} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:31:08.140Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":150,"timestamp":"2024-11-22T14:31:08.611Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e915ce} at intensamente.wlk:60 exhausted all cases without a match [Send]{e915ce} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [Send]{e915ce} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:31:08.700Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{7fce49} at intensamente.wlk:-- exhausted all cases without a match [Return]{7fce49} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{7fce49} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:31:08.700Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f81e13} at intensamente.wlk:60 exhausted all cases without a match [Send]{f81e13} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [Send]{f81e13} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:31:08.871Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{606256} at intensamente.wlk:-- exhausted all cases without a match [Return]{606256} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{606256} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:31:08.871Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4ce106} at intensamente.wlk:60 exhausted all cases without a match [Send]{4ce106} at intensamente.wlk:60 exhausted all cases without a match","stack":"Error: [Send]{4ce106} at intensamente.wlk:60 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:31:09.793Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{97706c} at intensamente.wlk:-- exhausted all cases without a match [Return]{97706c} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{97706c} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:31:09.793Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:31:21.422Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T14:31:21.599Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:32:46.794Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{71f097} at intensamente.wlk:16 exhausted all cases without a match [Parameter]{71f097} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Parameter]{71f097} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:32:46.810Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T14:32:46.927Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:32:47.033Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{dbf437} at intensamente.wlk:16 exhausted all cases without a match [Parameter]{dbf437} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Parameter]{dbf437} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:32:47.128Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:32:47.399Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Parameter]{22ab95} at intensamente.wlk:16 exhausted all cases without a match [Parameter]{22ab95} at intensamente.wlk:16 exhausted all cases without a match","stack":"Error: [Parameter]{22ab95} at intensamente.wlk:16 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:32:47.492Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T14:32:47.867Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{bca7b3} at intensamente.wlk:17 exhausted all cases without a match [Send]{bca7b3} at intensamente.wlk:17 exhausted all cases without a match","stack":"Error: [Send]{bca7b3} at intensamente.wlk:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:32:50.695Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Return]{eadd01} at intensamente.wlk:-- exhausted all cases without a match [Return]{eadd01} at intensamente.wlk:-- exhausted all cases without a match","stack":"Error: [Return]{eadd01} at intensamente.wlk:-- exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:32:50.695Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:32:50.799Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:32:50.875Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:32:50.946Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:32:51.198Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:32:51.297Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:32:51.361Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:33:25.504Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:25.504Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:25.566Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:25.737Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:25.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:26.052Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:33:26.153Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:26.153Z"} +{"level":"error","message":"✘ Completions for node failed: Error: ne [Variable]{99d0e4} at testExample.wtest:6 exhausted all cases without a match ne [Variable]{99d0e4} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: ne [Variable]{99d0e4} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:33:26.675Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:26.777Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:33:27.472Z"} +{"level":"error","message":"✘ Completions for node failed: Error: E [Variable]{dcd2da} at testExample.wtest:6 exhausted all cases without a match E [Variable]{dcd2da} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: E [Variable]{dcd2da} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:33:27.697Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:27.779Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:27.922Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:33:28.034Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:33:29.062Z"} +{"level":"error","message":"✘ Completions for node failed: Error: Y [Variable]{b104ca} at testExample.wtest:6 exhausted all cases without a match Y [Variable]{b104ca} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: Y [Variable]{b104ca} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:33:29.087Z"} +{"level":"error","message":"✘ Completions for node failed: Error: y [Variable]{b184d1} at testExample.wtest:6 exhausted all cases without a match y [Variable]{b184d1} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: y [Variable]{b184d1} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:33:30.139Z"} +{"level":"error","message":"✘ Completions for node failed: Error: yo [Variable]{884d33} at testExample.wtest:6 exhausted all cases without a match yo [Variable]{884d33} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: yo [Variable]{884d33} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:33:32.318Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:32.404Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:32.454Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:33.678Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:39.244Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:41.855Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:41.906Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:33:42.414Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{9dbe32} at testExample.wtest:6 exhausted all cases without a match [NamedArgument]{9dbe32} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: [NamedArgument]{9dbe32} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:33:43.465Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:43.549Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:33:44.131Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T14:33:44.325Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T14:33:44.468Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:33:44.642Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:33:51.556Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T14:33:53.024Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":135,"timestamp":"2024-11-22T14:33:53.687Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":126,"timestamp":"2024-11-22T14:33:53.813Z"} +{"level":"error","message":"✘ Completions for node failed: Error: e [Variable]{c018dd} at testExample.wtest:6 exhausted all cases without a match e [Variable]{c018dd} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: e [Variable]{c018dd} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:33:54.025Z"} +{"level":"error","message":"✘ Completions for node failed: Error: even [Variable]{43968e} at testExample.wtest:6 exhausted all cases without a match even [Variable]{43968e} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: even [Variable]{43968e} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:33:54.646Z"} +{"level":"error","message":"✘ Completions for node failed: Error: evento [Variable]{a73bd0} at testExample.wtest:6 exhausted all cases without a match evento [Variable]{a73bd0} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: evento [Variable]{a73bd0} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:33:55.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:55.944Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:33:56.042Z"} +{"level":"error","message":"✘ Completions for node failed: Error: evento [Variable]{b58a6c} at testExample.wtest:6 exhausted all cases without a match evento [Variable]{b58a6c} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: evento [Variable]{b58a6c} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:33:56.207Z"} +{"level":"error","message":"✘ Completions for node failed: Error: evento [Variable]{4b0811} at testExample.wtest:6 exhausted all cases without a match evento [Variable]{4b0811} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: evento [Variable]{4b0811} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:33:56.495Z"} +{"level":"error","message":"✘ Completions for node failed: Error: evento [Variable]{50abf2} at testExample.wtest:6 exhausted all cases without a match evento [Variable]{50abf2} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: evento [Variable]{50abf2} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:33:56.654Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:33:58.345Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T14:33:59.749Z"} +{"level":"error","message":"✘ Completions for node failed: Error: evento [Variable]{280161} at testExample.wtest:6 exhausted all cases without a match evento [Variable]{280161} at testExample.wtest:6 exhausted all cases without a match","stack":"Error: evento [Variable]{280161} at testExample.wtest:6 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:34:00.296Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:00.388Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:00.443Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:34:00.555Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:01.116Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:01.263Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:04.924Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:34:06.595Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T14:34:07.826Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:10.276Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:34:12.858Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":150,"timestamp":"2024-11-22T14:34:14.515Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":114,"timestamp":"2024-11-22T14:34:17.813Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:17.814Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:17.881Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:18.095Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":121,"timestamp":"2024-11-22T14:34:18.216Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:18.772Z"} +{"level":"error","message":"✘ Completions for node failed: Error: em [Variable]{87e923} at testExample.wtest:7 exhausted all cases without a match em [Variable]{87e923} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: em [Variable]{87e923} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:34:21.420Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:34:21.528Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:21.529Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emo [Variable]{2252bd} at testExample.wtest:7 exhausted all cases without a match emo [Variable]{2252bd} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: emo [Variable]{2252bd} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:34:21.598Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:21.690Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emoc [Variable]{375c67} at testExample.wtest:7 exhausted all cases without a match emoc [Variable]{375c67} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: emoc [Variable]{375c67} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:34:21.957Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocio [Variable]{c5021c} at testExample.wtest:7 exhausted all cases without a match emocio [Variable]{c5021c} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: emocio [Variable]{c5021c} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:34:22.302Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:34:22.412Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:34:22.583Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocion1 [Variable]{3edd87} at testExample.wtest:7 exhausted all cases without a match emocion1 [Variable]{3edd87} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: emocion1 [Variable]{3edd87} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:34:24.016Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:24.112Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocion1 [Variable]{d22784} at testExample.wtest:7 exhausted all cases without a match emocion1 [Variable]{d22784} at testExample.wtest:7 exhausted all cases without a match","stack":"Error: emocion1 [Variable]{d22784} at testExample.wtest:7 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:34:25.013Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:25.115Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:25.169Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:34:25.356Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:26.040Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:27.771Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:29.715Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:29.789Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:34:29.990Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:29.990Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:30.045Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:32.241Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:32.383Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:34:38.934Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:34:44.672Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:34:45.017Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:45.609Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:34:47.127Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:34:48.608Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:34:48.710Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:34:48.810Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:34:49.143Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":125,"timestamp":"2024-11-22T14:34:56.182Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:34:56.292Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:34:56.408Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:35:00.587Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":121,"timestamp":"2024-11-22T14:35:03.686Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:03.777Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:03.931Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:03.988Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:04.238Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:04.292Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":129,"timestamp":"2024-11-22T14:35:04.422Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:04.598Z"} +{"level":"error","message":"✘ Completions for node failed: Error: em [Variable]{efbfef} at testExample.wtest:8 exhausted all cases without a match em [Variable]{efbfef} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: em [Variable]{efbfef} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:35:04.689Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:04.988Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:05.135Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:05.305Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:05.442Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocion2 [Variable]{61fe94} at testExample.wtest:8 exhausted all cases without a match emocion2 [Variable]{61fe94} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: emocion2 [Variable]{61fe94} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:35:05.632Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:05.821Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:35:06.203Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:06.203Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:06.260Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocion2 [Variable]{8390d0} at testExample.wtest:8 exhausted all cases without a match emocion2 [Variable]{8390d0} at testExample.wtest:8 exhausted all cases without a match","stack":"Error: emocion2 [Variable]{8390d0} at testExample.wtest:8 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:35:08.366Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:08.466Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:35:08.583Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:08.583Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:35:08.754Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:10.972Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T14:35:13.733Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":143,"timestamp":"2024-11-22T14:35:18.657Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:35:19.190Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T14:35:19.305Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:35:22.305Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:35:23.454Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:35:24.451Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:35:26.966Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:35:27.074Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:35:27.237Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T14:35:30.297Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:30.481Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:35:30.590Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:35:30.713Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:30.714Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":141,"timestamp":"2024-11-22T14:35:30.856Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:35:31.070Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:31.133Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:35:31.242Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:31.688Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:31.743Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:31.900Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:31.954Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:32.198Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":129,"timestamp":"2024-11-22T14:35:32.328Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:32.331Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:32.525Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T14:35:32.633Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:32.689Z"} +{"level":"error","message":"✘ Completions for node failed: Error: eit [Variable]{0fae35} at testExample.wtest:9 exhausted all cases without a match eit [Variable]{0fae35} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: eit [Variable]{0fae35} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:35:32.870Z"} +{"level":"error","message":"✘ Completions for node failed: Error: eitan [Variable]{30db2f} at testExample.wtest:9 exhausted all cases without a match eitan [Variable]{30db2f} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: eitan [Variable]{30db2f} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:35:40.071Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:40.231Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:40.890Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:42.341Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T14:35:42.760Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":136,"timestamp":"2024-11-22T14:35:43.266Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T14:35:43.851Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:43.852Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":116,"timestamp":"2024-11-22T14:35:44.541Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:35:47.416Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":149,"timestamp":"2024-11-22T14:35:49.588Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:52.484Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":145,"timestamp":"2024-11-22T14:35:53.098Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T14:35:54.041Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:35:54.146Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:55.115Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:35:55.217Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{70a935} at testExample.wtest:9 exhausted all cases without a match [Literal]{70a935} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Literal]{70a935} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:35:58.882Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{75304d} at testExample.wtest:9 exhausted all cases without a match [NamedArgument]{75304d} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [NamedArgument]{75304d} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:35:58.882Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":110,"timestamp":"2024-11-22T14:35:58.992Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:58.993Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:59.072Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:35:59.221Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:35:59.330Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:35:59.791Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{313b3e} at testExample.wtest:9 exhausted all cases without a match [Literal]{313b3e} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Literal]{313b3e} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:36:00.082Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{a7b0a8} at testExample.wtest:9 exhausted all cases without a match [NamedArgument]{a7b0a8} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [NamedArgument]{a7b0a8} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:36:00.082Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{5508ab} at testExample.wtest:9 exhausted all cases without a match [Literal]{5508ab} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Literal]{5508ab} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:36:00.803Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{74cc0b} at testExample.wtest:9 exhausted all cases without a match [NamedArgument]{74cc0b} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [NamedArgument]{74cc0b} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:36:00.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:00.945Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{3a2ef4} at testExample.wtest:9 exhausted all cases without a match [Literal]{3a2ef4} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [Literal]{3a2ef4} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:36:02.252Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{7256ce} at testExample.wtest:9 exhausted all cases without a match [NamedArgument]{7256ce} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: [NamedArgument]{7256ce} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:36:02.253Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:36:04.425Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":126,"timestamp":"2024-11-22T14:36:04.552Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":120,"timestamp":"2024-11-22T14:36:09.495Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:36:10.824Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:10.825Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:12.685Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:12.769Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:13.038Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:16.531Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:16.713Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:16.767Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:17.001Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:17.061Z"} +{"level":"error","message":"✘ Completions for node failed: Error: gr [Variable]{576f45} at testExample.wtest:10 exhausted all cases without a match gr [Variable]{576f45} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: gr [Variable]{576f45} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:17.525Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:17.617Z"} +{"level":"error","message":"✘ Completions for node failed: Error: gru [Variable]{f9a572} at testExample.wtest:10 exhausted all cases without a match gru [Variable]{f9a572} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: gru [Variable]{f9a572} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:17.903Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:17.986Z"} +{"level":"error","message":"✘ Completions for node failed: Error: grup [Variable]{9c37f0} at testExample.wtest:10 exhausted all cases without a match grup [Variable]{9c37f0} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: grup [Variable]{9c37f0} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:18.096Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:18.186Z"} +{"level":"error","message":"✘ Completions for node failed: Error: grupo [Variable]{bc35b3} at testExample.wtest:10 exhausted all cases without a match grupo [Variable]{bc35b3} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: grupo [Variable]{bc35b3} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:18.257Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:18.348Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:36:18.927Z"} +{"level":"error","message":"✘ Completions for node failed: Error: grupo [Variable]{d71c5c} at testExample.wtest:10 exhausted all cases without a match grupo [Variable]{d71c5c} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: grupo [Variable]{d71c5c} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:36:19.167Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:19.269Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:19.334Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":147,"timestamp":"2024-11-22T14:36:20.405Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:20.405Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:36:21.928Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:22.224Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:36:22.418Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:36:33.020Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{acaf6f} at testExample.wtest:10 exhausted all cases without a match [Literal]{acaf6f} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Literal]{acaf6f} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:36:34.652Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{434b4b} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{434b4b} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{434b4b} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:36:34.652Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:34.743Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:34.798Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:36:34.912Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:34.975Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{ddb6f6} at testExample.wtest:10 exhausted all cases without a match [Literal]{ddb6f6} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [Literal]{ddb6f6} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:36:35.139Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{11eb7e} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{11eb7e} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{11eb7e} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:36:35.139Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{93d2dc} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{93d2dc} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{93d2dc} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:47.929Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:36:48.016Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:36:48.497Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{11007b} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{11007b} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{11007b} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:48.944Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{380895} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{380895} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{380895} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:49.106Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{821684} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{821684} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{821684} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:49.263Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{1dbbc1} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{1dbbc1} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{1dbbc1} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:49.524Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":102,"timestamp":"2024-11-22T14:36:49.869Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{ec561f} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{ec561f} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{ec561f} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:50.063Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{5246d8} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{5246d8} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{5246d8} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:50.314Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{667729} at testExample.wtest:10 exhausted all cases without a match [NamedArgument]{667729} at testExample.wtest:10 exhausted all cases without a match","stack":"Error: [NamedArgument]{667729} at testExample.wtest:10 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:36:50.570Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:00.860Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:01.753Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:02.479Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:05.837Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:05.985Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":206,"timestamp":"2024-11-22T14:37:06.191Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:06.192Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:06.528Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{4307d1} at testExample.wtest:12 exhausted all cases without a match [Send]{4307d1} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Send]{4307d1} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:37:07.383Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:07.480Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:37:07.537Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:37:14.841Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T14:37:15.043Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":152,"timestamp":"2024-11-22T14:37:18.644Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T14:38:16.854Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:38:16.957Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":206,"timestamp":"2024-11-22T14:40:24.934Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5384e7} at intensamente.wlk:17 exhausted all cases without a match [Send]{5384e7} at intensamente.wlk:17 exhausted all cases without a match","stack":"Error: [Send]{5384e7} at intensamente.wlk:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:40:24.981Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{2c1675} at intensamente.wlk:17 exhausted all cases without a match [Assignment]{2c1675} at intensamente.wlk:17 exhausted all cases without a match","stack":"Error: [Assignment]{2c1675} at intensamente.wlk:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T14:40:24.981Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:40:25.093Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":211,"timestamp":"2024-11-22T14:40:25.307Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":208,"timestamp":"2024-11-22T14:40:25.530Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T14:40:25.665Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":159,"timestamp":"2024-11-22T14:40:25.825Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{507a0f} at intensamente.wlk:17 exhausted all cases without a match [Send]{507a0f} at intensamente.wlk:17 exhausted all cases without a match","stack":"Error: [Send]{507a0f} at intensamente.wlk:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:40:25.908Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{25050f} at intensamente.wlk:17 exhausted all cases without a match [Assignment]{25050f} at intensamente.wlk:17 exhausted all cases without a match","stack":"Error: [Assignment]{25050f} at intensamente.wlk:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)","timestamp":"2024-11-22T14:40:25.909Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T14:40:26.047Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":141,"timestamp":"2024-11-22T14:40:26.190Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:40:26.549Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T14:40:26.768Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":202,"timestamp":"2024-11-22T14:41:18.561Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":209,"timestamp":"2024-11-22T14:41:18.771Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":242,"timestamp":"2024-11-22T14:41:19.934Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":154,"timestamp":"2024-11-22T14:41:20.094Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":145,"timestamp":"2024-11-22T14:42:17.355Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":198,"timestamp":"2024-11-22T14:42:17.555Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":171,"timestamp":"2024-11-22T14:42:17.874Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":174,"timestamp":"2024-11-22T14:42:18.049Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:42:18.163Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:42:18.289Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":193,"timestamp":"2024-11-22T14:42:18.483Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":181,"timestamp":"2024-11-22T14:42:18.665Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":225,"timestamp":"2024-11-22T14:42:18.891Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":144,"timestamp":"2024-11-22T14:42:19.036Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:42:19.147Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":115,"timestamp":"2024-11-22T14:42:19.263Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":173,"timestamp":"2024-11-22T14:42:19.435Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":172,"timestamp":"2024-11-22T14:42:19.609Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T14:42:19.728Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T14:42:19.855Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":146,"timestamp":"2024-11-22T14:42:20.004Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":123,"timestamp":"2024-11-22T14:42:20.199Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":170,"timestamp":"2024-11-22T14:42:20.375Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":111,"timestamp":"2024-11-22T14:42:20.486Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:42:52.358Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T14:42:52.893Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:42:52.995Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:42:56.171Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:42:56.356Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":133,"timestamp":"2024-11-22T14:42:57.646Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":174,"timestamp":"2024-11-22T14:43:52.484Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":185,"timestamp":"2024-11-22T14:43:52.670Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:46:04.753Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:46:05.262Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:05.264Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:05.340Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":125,"timestamp":"2024-11-22T14:46:05.466Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:05.538Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:05.595Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":121,"timestamp":"2024-11-22T14:46:05.810Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:05.880Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:05.947Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:46:06.051Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:46:06.175Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:06.274Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:46:06.380Z"} +{"level":"error","message":"✘ Completions for node failed: Error: em [Variable]{cce5ec} at testExample.wtest:9 exhausted all cases without a match em [Variable]{cce5ec} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: em [Variable]{cce5ec} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:46:06.402Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:46:06.577Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:06.759Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:06.820Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:07.005Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:46:07.116Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:07.173Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocion3 [Variable]{8b11fd} at testExample.wtest:9 exhausted all cases without a match emocion3 [Variable]{8b11fd} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: emocion3 [Variable]{8b11fd} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:46:07.423Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":123,"timestamp":"2024-11-22T14:46:07.549Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:46:07.654Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:07.654Z"} +{"level":"error","message":"✘ Completions for node failed: Error: emocion3 [Variable]{0d21a6} at testExample.wtest:9 exhausted all cases without a match emocion3 [Variable]{0d21a6} at testExample.wtest:9 exhausted all cases without a match","stack":"Error: emocion3 [Variable]{0d21a6} at testExample.wtest:9 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:08.378Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:46:08.482Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:08.484Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:08.544Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:09.258Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:46:09.694Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":138,"timestamp":"2024-11-22T14:46:11.591Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":125,"timestamp":"2024-11-22T14:46:11.773Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T14:46:18.322Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:46:19.338Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:46:19.479Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:46:20.733Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":139,"timestamp":"2024-11-22T14:46:20.873Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":118,"timestamp":"2024-11-22T14:46:26.237Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T14:46:27.154Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:27.336Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:29.241Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:46:30.179Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:46:31.094Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:31.998Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:32.122Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":122,"timestamp":"2024-11-22T14:46:33.023Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9f8930} at testExample.wtest:14 exhausted all cases without a match [Send]{9f8930} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{9f8930} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:40.087Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:40.179Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:40.242Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5ae699} at testExample.wtest:14 exhausted all cases without a match [Send]{5ae699} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{5ae699} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:40.861Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{57cb60} at testExample.wtest:14 exhausted all cases without a match [Send]{57cb60} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{57cb60} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:41.034Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{43e55c} at testExample.wtest:14 exhausted all cases without a match [Send]{43e55c} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{43e55c} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:41.535Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:41.631Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{602b60} at testExample.wtest:14 exhausted all cases without a match [Send]{602b60} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{602b60} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:41.707Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:46:41.814Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{0dac24} at testExample.wtest:14 exhausted all cases without a match [Send]{0dac24} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{0dac24} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:41.986Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fbadf0} at testExample.wtest:14 exhausted all cases without a match [Send]{fbadf0} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{fbadf0} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:42.257Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":147,"timestamp":"2024-11-22T14:46:42.729Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:42.820Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:42.896Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:43.063Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":131,"timestamp":"2024-11-22T14:46:43.195Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{5cdbb5} at testExample.wtest:14 exhausted all cases without a match [Send]{5cdbb5} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{5cdbb5} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:43.274Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:43.608Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:43.749Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:43.899Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:50.793Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:50.938Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:46:51.143Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:51.144Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:51.207Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":154,"timestamp":"2024-11-22T14:46:51.362Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:51.426Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{52e0cd} at testExample.wtest:14 exhausted all cases without a match [Send]{52e0cd} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{52e0cd} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:51.587Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:46:51.786Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{3b4ee5} at testExample.wtest:14 exhausted all cases without a match [Send]{3b4ee5} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{3b4ee5} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:51.869Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:46:52.033Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:46:52.137Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{744683} at testExample.wtest:14 exhausted all cases without a match [Send]{744683} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{744683} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:46:52.303Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:47:54.962Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T14:47:55.665Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:47:57.058Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:47:58.967Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":142,"timestamp":"2024-11-22T14:47:59.329Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T14:47:59.720Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{eb5abb} at testExample.wtest:14 exhausted all cases without a match [Send]{eb5abb} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{eb5abb} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:01.090Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:01.247Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:01.491Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T14:48:02.375Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{765c15} at testExample.wtest:14 exhausted all cases without a match [Send]{765c15} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{765c15} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:03.449Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{ed82c9} at testExample.wtest:14 exhausted all cases without a match [Send]{ed82c9} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{ed82c9} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:03.631Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9aa40c} at testExample.wtest:14 exhausted all cases without a match [Send]{9aa40c} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{9aa40c} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:03.996Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":150,"timestamp":"2024-11-22T14:48:04.488Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{8717f1} at testExample.wtest:14 exhausted all cases without a match [Send]{8717f1} at testExample.wtest:14 exhausted all cases without a match","stack":"Error: [Send]{8717f1} at testExample.wtest:14 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:04.564Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:48:20.176Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:20.973Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:48:21.107Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:21.177Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:21.239Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:21.393Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:21.546Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:21.741Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:48:21.853Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:21.948Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:48:22.173Z"} +{"level":"error","message":"✘ Completions for node failed: Error: raa [Variable]{99c14d} at testExample.wtest:11 exhausted all cases without a match raa [Variable]{99c14d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: raa [Variable]{99c14d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:48:22.190Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:48:23.059Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:48:23.163Z"} +{"level":"error","message":"✘ Completions for node failed: Error: ram [Variable]{9947d9} at testExample.wtest:11 exhausted all cases without a match ram [Variable]{9947d9} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: ram [Variable]{9947d9} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:48:23.724Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:48:23.859Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:48:24.023Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:48:24.704Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:48:24.961Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:48:25.068Z"} +{"level":"error","message":"✘ Completions for node failed: Error: ramiro [Variable]{1b170f} at testExample.wtest:11 exhausted all cases without a match ramiro [Variable]{1b170f} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: ramiro [Variable]{1b170f} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:25.155Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:25.890Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:25.961Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T14:48:26.075Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:27.534Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":113,"timestamp":"2024-11-22T14:48:28.000Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T14:48:30.227Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:30.227Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:30.311Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":133,"timestamp":"2024-11-22T14:48:30.445Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{2c03e0} at testExample.wtest:11 exhausted all cases without a match [Literal]{2c03e0} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Literal]{2c03e0} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:32.399Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{712f01} at testExample.wtest:11 exhausted all cases without a match [NamedArgument]{712f01} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [NamedArgument]{712f01} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:48:32.399Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:32.490Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:32.546Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T14:48:32.758Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:48:32.758Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":122,"timestamp":"2024-11-22T14:48:32.881Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":132,"timestamp":"2024-11-22T14:48:33.138Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:48:33.315Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:48:33.417Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":120,"timestamp":"2024-11-22T14:48:33.643Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:48:34.388Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":153,"timestamp":"2024-11-22T14:48:34.783Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{dac54f} at testExample.wtest:11 exhausted all cases without a match [Literal]{dac54f} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [Literal]{dac54f} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:48:35.318Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{9da70d} at testExample.wtest:11 exhausted all cases without a match [NamedArgument]{9da70d} at testExample.wtest:11 exhausted all cases without a match","stack":"Error: [NamedArgument]{9da70d} at testExample.wtest:11 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:48:35.318Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:48:39.095Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:48:40.068Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:48:40.171Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:48:41.146Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":151,"timestamp":"2024-11-22T14:48:41.360Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:48:42.127Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:48:42.295Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:48:42.399Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:48:42.507Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":129,"timestamp":"2024-11-22T14:48:42.915Z"} +{"failures":[{"error":["wollok.lib.AssertionException: Expected <2> but found <1>"," at testExample.\"group of tests for pepita\".\"6\" [testExample.wtest:5]"],"test":"testExample.\"group of tests for pepita\".\"6\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":363,"timestamp":"2024-11-22T14:48:49.043Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{76fbed} at testExample.wtest:12 exhausted all cases without a match [Literal]{76fbed} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Literal]{76fbed} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:20.745Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{f9a0fe} at testExample.wtest:12 exhausted all cases without a match [NamedArgument]{f9a0fe} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [NamedArgument]{f9a0fe} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:20.745Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:49:21.108Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T14:49:21.224Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":118,"timestamp":"2024-11-22T14:49:21.473Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{07400d} at testExample.wtest:12 exhausted all cases without a match [Literal]{07400d} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Literal]{07400d} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:21.659Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{1cad9d} at testExample.wtest:12 exhausted all cases without a match [NamedArgument]{1cad9d} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [NamedArgument]{1cad9d} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:21.659Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{cade4f} at testExample.wtest:12 exhausted all cases without a match [Literal]{cade4f} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Literal]{cade4f} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:22.117Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{781184} at testExample.wtest:12 exhausted all cases without a match [NamedArgument]{781184} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [NamedArgument]{781184} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:22.117Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:49:22.224Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{654fad} at testExample.wtest:12 exhausted all cases without a match [Literal]{654fad} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [Literal]{654fad} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:23.372Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{a2b6ce} at testExample.wtest:12 exhausted all cases without a match [NamedArgument]{a2b6ce} at testExample.wtest:12 exhausted all cases without a match","stack":"Error: [NamedArgument]{a2b6ce} at testExample.wtest:12 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:23.373Z"} +{"failures":[{"error":["wollok.lib.AssertionException: Expected <2> but found <1>"," at testExample.\"group of tests for pepita\".\"6\" [testExample.wtest:5]"],"test":"testExample.\"group of tests for pepita\".\"6\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":374,"timestamp":"2024-11-22T14:49:38.414Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T14:49:52.123Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{c43cd0} at intensamente.wlk:108 exhausted all cases without a match [Literal]{c43cd0} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{c43cd0} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:52.267Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{b8810d} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{b8810d} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{b8810d} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:52.267Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:49:52.375Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T14:49:52.565Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:49:52.566Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{6020d2} at intensamente.wlk:108 exhausted all cases without a match [Literal]{6020d2} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{6020d2} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:52.684Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{848fff} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{848fff} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{848fff} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:52.684Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:49:52.789Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:49:52.991Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{cccdaa} at intensamente.wlk:108 exhausted all cases without a match [Literal]{cccdaa} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{cccdaa} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:49:53.103Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{f4edef} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{f4edef} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{f4edef} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:49:53.104Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:49:53.304Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T14:49:53.431Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T14:49:56.953Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":122,"timestamp":"2024-11-22T14:49:57.245Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:49:57.247Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T14:49:57.372Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:49:57.449Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:49:57.545Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:49:57.648Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:49:57.718Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:49:57.979Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ram [Variable]{2a0e4f} at intensamente.wlk:108 exhausted all cases without a match intensamente.ram [Variable]{2a0e4f} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: intensamente.ram [Variable]{2a0e4f} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:49:58.555Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:49:58.760Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ramir [Variable]{bb8554} at intensamente.wlk:108 exhausted all cases without a match intensamente.ramir [Variable]{bb8554} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: intensamente.ramir [Variable]{bb8554} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:49:58.849Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ramiro [Variable]{225302} at intensamente.wlk:108 exhausted all cases without a match intensamente.ramiro [Variable]{225302} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: intensamente.ramiro [Variable]{225302} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T14:49:59.118Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ramiro [Variable]{4f27d7} at intensamente.wlk:108 exhausted all cases without a match intensamente.ramiro [Variable]{4f27d7} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: intensamente.ramiro [Variable]{4f27d7} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:50:00.123Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T14:50:00.322Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:50:00.323Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T14:50:00.446Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T14:50:00.552Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":141,"timestamp":"2024-11-22T14:50:00.983Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":118,"timestamp":"2024-11-22T14:50:01.366Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:50:01.477Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":148,"timestamp":"2024-11-22T14:50:02.230Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T14:50:02.805Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":154,"timestamp":"2024-11-22T14:50:04.367Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:50:08.897Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:50:09.280Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:50:09.849Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":126,"timestamp":"2024-11-22T14:50:09.976Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:50:10.173Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{da5610} at intensamente.wlk:108 exhausted all cases without a match [Literal]{da5610} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{da5610} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:50:11.849Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{ddf36b} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{ddf36b} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{ddf36b} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:50:11.849Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:50:11.944Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:50:12.132Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:50:12.132Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{cd324b} at intensamente.wlk:108 exhausted all cases without a match [Literal]{cd324b} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{cd324b} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:50:12.495Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{b4f9f4} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{b4f9f4} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{b4f9f4} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:50:12.496Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{63ae65} at intensamente.wlk:108 exhausted all cases without a match [Literal]{63ae65} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{63ae65} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:50:12.864Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{f5424b} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{f5424b} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{f5424b} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:50:12.864Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T14:50:13.305Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Literal]{2dee54} at intensamente.wlk:108 exhausted all cases without a match [Literal]{2dee54} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [Literal]{2dee54} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:50:13.398Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [NamedArgument]{967cac} at intensamente.wlk:108 exhausted all cases without a match [NamedArgument]{967cac} at intensamente.wlk:108 exhausted all cases without a match","stack":"Error: [NamedArgument]{967cac} at intensamente.wlk:108 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T14:50:13.398Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:50:15.614Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T14:50:16.827Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":204,"timestamp":"2024-11-22T14:53:43.457Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":184,"timestamp":"2024-11-22T14:53:43.644Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":180,"timestamp":"2024-11-22T14:53:44.083Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":186,"timestamp":"2024-11-22T14:53:44.270Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T14:54:23.130Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:54:23.238Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:54:23.443Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:23.443Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:23.512Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:54:23.614Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:23.675Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":119,"timestamp":"2024-11-22T14:54:23.794Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:25.914Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:25.971Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:54:26.072Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:54:26.385Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{504cc7} at testExample.wtest:17 exhausted all cases without a match [Send]{504cc7} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{504cc7} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:28.975Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T14:54:29.193Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:29.193Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:29.281Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":119,"timestamp":"2024-11-22T14:54:29.400Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:29.462Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:29.619Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T14:54:29.731Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:29.813Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:29.961Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:30.342Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:30.787Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:30.897Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:31.179Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{dc5783} at testExample.wtest:17 exhausted all cases without a match [Send]{dc5783} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{dc5783} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:32.208Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:32.308Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:54:32.396Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{dc237a} at testExample.wtest:17 exhausted all cases without a match [Send]{dc237a} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{dc237a} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:32.476Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:54:32.580Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{0a4cce} at testExample.wtest:17 exhausted all cases without a match [Send]{0a4cce} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{0a4cce} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:32.813Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{9e7e83} at testExample.wtest:17 exhausted all cases without a match [Send]{9e7e83} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{9e7e83} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:33.359Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{fa9cbb} at testExample.wtest:17 exhausted all cases without a match [Send]{fa9cbb} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{fa9cbb} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:33.641Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T14:54:33.853Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{afa135} at testExample.wtest:17 exhausted all cases without a match [Send]{afa135} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{afa135} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:33.936Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{db38ee} at testExample.wtest:17 exhausted all cases without a match [Send]{db38ee} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{db38ee} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:54:34.333Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":134,"timestamp":"2024-11-22T14:54:34.470Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":148,"timestamp":"2024-11-22T14:54:34.750Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":313,"timestamp":"2024-11-22T14:54:40.500Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":109,"timestamp":"2024-11-22T14:54:55.872Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:54:56.485Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":110,"timestamp":"2024-11-22T14:54:56.790Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:54:56.957Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:54:57.304Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":118,"timestamp":"2024-11-22T14:54:57.644Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":108,"timestamp":"2024-11-22T14:54:58.057Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":128,"timestamp":"2024-11-22T14:54:58.572Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:55:01.003Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:55:01.496Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":121,"timestamp":"2024-11-22T14:55:02.441Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":136,"timestamp":"2024-11-22T14:55:02.879Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:55:03.825Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:55:04.270Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":125,"timestamp":"2024-11-22T14:55:04.396Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:55:04.899Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":148,"timestamp":"2024-11-22T14:55:05.507Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:55:05.875Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T14:55:07.140Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":189,"timestamp":"2024-11-22T14:55:07.335Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":140,"timestamp":"2024-11-22T14:55:07.476Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":136,"timestamp":"2024-11-22T14:55:08.145Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T14:55:09.369Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:55:09.868Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T14:55:22.952Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:55:23.034Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:55:23.114Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:55:23.191Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:55:23.292Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":120,"timestamp":"2024-11-22T14:55:23.506Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:55:23.596Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:55:23.700Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":156,"timestamp":"2024-11-22T14:55:58.476Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":312,"timestamp":"2024-11-22T14:55:58.789Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":175,"timestamp":"2024-11-22T14:55:59.024Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T14:55:59.206Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":244,"timestamp":"2024-11-22T14:55:59.451Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:55:59.452Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":168,"timestamp":"2024-11-22T14:55:59.621Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:55:59.630Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":261,"timestamp":"2024-11-22T14:55:59.891Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":138,"timestamp":"2024-11-22T14:56:00.037Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.037Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T14:56:00.169Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.170Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:56:00.273Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.373Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.439Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:56:00.545Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.701Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.764Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:00.942Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":122,"timestamp":"2024-11-22T14:56:01.335Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:56:01.597Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:01.597Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:01.661Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:01.724Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:56:01.827Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:01.882Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:56:01.987Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:01.988Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T14:56:02.103Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T14:56:02.664Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:02.664Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":135,"timestamp":"2024-11-22T14:56:03.795Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d8ca8c} at testExample.wtest:17 exhausted all cases without a match [Send]{d8ca8c} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{d8ca8c} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:05.216Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:56:05.319Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:05.377Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:56:05.637Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":112,"timestamp":"2024-11-22T14:56:05.939Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":106,"timestamp":"2024-11-22T14:56:06.105Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:56:06.213Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:56:07.392Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:07.515Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:07.834Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:08.051Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":120,"timestamp":"2024-11-22T14:56:09.833Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T14:56:10.915Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{149537} at testExample.wtest:17 exhausted all cases without a match [Send]{149537} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{149537} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:10.945Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{45d0f5} at testExample.wtest:17 exhausted all cases without a match [Send]{45d0f5} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{45d0f5} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.124Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{e066ca} at testExample.wtest:17 exhausted all cases without a match [Send]{e066ca} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{e066ca} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.203Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d94332} at testExample.wtest:17 exhausted all cases without a match [Send]{d94332} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{d94332} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.379Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{587c3b} at testExample.wtest:17 exhausted all cases without a match [Send]{587c3b} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{587c3b} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.458Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{f444ea} at testExample.wtest:17 exhausted all cases without a match [Send]{f444ea} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{f444ea} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.537Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7a8d6a} at testExample.wtest:17 exhausted all cases without a match [Send]{7a8d6a} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{7a8d6a} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.656Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7ec6d3} at testExample.wtest:17 exhausted all cases without a match [Send]{7ec6d3} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{7ec6d3} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:11.879Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:56:11.982Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:56:13.297Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T14:56:13.491Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{308bf1} at testExample.wtest:17 exhausted all cases without a match [Send]{308bf1} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{308bf1} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:14.626Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:14.781Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:14.940Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:15.011Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:15.167Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:15.324Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:15.480Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:15.731Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T14:56:16.343Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:16.461Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:17.294Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:17.497Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":205,"timestamp":"2024-11-22T14:56:17.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:17.803Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:17.865Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":130,"timestamp":"2024-11-22T14:56:17.996Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{a1f5f7} at testExample.wtest:17 exhausted all cases without a match [Send]{a1f5f7} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{a1f5f7} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:19.596Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:56:19.695Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{03e83b} at testExample.wtest:17 exhausted all cases without a match [Send]{03e83b} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{03e83b} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:19.785Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:56:19.976Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{d75b7c} at testExample.wtest:17 exhausted all cases without a match [Send]{d75b7c} at testExample.wtest:17 exhausted all cases without a match","stack":"Error: [Send]{d75b7c} at testExample.wtest:17 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:56:20.060Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":101,"timestamp":"2024-11-22T14:56:20.163Z"} +{"failures":[{"error":["wollok.lib.AssertionException: Expected <480> but found <500>"," at testExample.\"group of tests for pepita\".\"6\" [testExample.wtest:5]"],"test":"testExample.\"group of tests for pepita\".\"6\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":355,"timestamp":"2024-11-22T14:56:32.902Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:57:14.242Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:57:14.344Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T14:57:15.442Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T14:57:15.544Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:57:27.354Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":314,"timestamp":"2024-11-22T14:57:39.004Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:57:41.616Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:41.888Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:41.960Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:42.156Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":111,"timestamp":"2024-11-22T14:57:42.268Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":113,"timestamp":"2024-11-22T14:57:42.382Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:42.458Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":117,"timestamp":"2024-11-22T14:57:42.576Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:57:42.873Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:42.874Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:43.206Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:43.771Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:43.830Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:57:43.936Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:44.280Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:44.456Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":119,"timestamp":"2024-11-22T14:57:45.718Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:57:45.892Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:45.960Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:57:46.065Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T14:57:48.548Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":142,"timestamp":"2024-11-22T14:57:48.783Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":115,"timestamp":"2024-11-22T14:57:49.772Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{65cc29} at testExample.wtest:18 exhausted all cases without a match [Send]{65cc29} at testExample.wtest:18 exhausted all cases without a match","stack":"Error: [Send]{65cc29} at testExample.wtest:18 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:57:50.667Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:50.764Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:50.824Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":107,"timestamp":"2024-11-22T14:57:51.109Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":102,"timestamp":"2024-11-22T14:57:51.296Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:52.081Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:52.344Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:52.788Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:53.021Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:53.093Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":103,"timestamp":"2024-11-22T14:57:53.197Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:53.259Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":105,"timestamp":"2024-11-22T14:57:53.464Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T14:57:54.480Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{729e68} at testExample.wtest:18 exhausted all cases without a match [Send]{729e68} at testExample.wtest:18 exhausted all cases without a match","stack":"Error: [Send]{729e68} at testExample.wtest:18 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:57:54.502Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:57:54.592Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{2a8838} at testExample.wtest:18 exhausted all cases without a match [Send]{2a8838} at testExample.wtest:18 exhausted all cases without a match","stack":"Error: [Send]{2a8838} at testExample.wtest:18 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:57:54.818Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{345058} at testExample.wtest:18 exhausted all cases without a match [Send]{345058} at testExample.wtest:18 exhausted all cases without a match","stack":"Error: [Send]{345058} at testExample.wtest:18 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:57:55.001Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:57:55.165Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":139,"timestamp":"2024-11-22T14:57:55.305Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{7c4ab2} at testExample.wtest:18 exhausted all cases without a match [Send]{7c4ab2} at testExample.wtest:18 exhausted all cases without a match","stack":"Error: [Send]{7c4ab2} at testExample.wtest:18 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T14:57:55.398Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":139,"timestamp":"2024-11-22T14:57:56.268Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":125,"timestamp":"2024-11-22T14:57:56.401Z"} +{"level":"info","message":"⌛ Validating testExample.wtest","timeElapsed":104,"timestamp":"2024-11-22T14:57:56.506Z"} +{"failures":[{"error":["wollok.lang.MessageNotUnderstoodException: a Furia does not understand intensdidad()"," at testExample.\"group of tests for pepita\".\"6\" [testExample.wtest:5]"],"test":"testExample.\"group of tests for pepita\".\"6\""}],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":1,"ok":0},"timeElapsed":340,"timestamp":"2024-11-22T14:58:00.919Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":332,"timestamp":"2024-11-22T14:58:21.318Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T14:59:21.541Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":154,"timestamp":"2024-11-22T14:59:23.140Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:59:23.140Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:59:23.218Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T14:59:23.312Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":117,"timestamp":"2024-11-22T14:59:23.429Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T14:59:31.329Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":108,"timestamp":"2024-11-22T15:03:58.026Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T15:03:58.132Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T15:03:59.058Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":143,"timestamp":"2024-11-22T15:03:59.756Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":113,"timestamp":"2024-11-22T15:03:59.871Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T15:04:02.903Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":117,"timestamp":"2024-11-22T15:04:42.820Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":137,"timestamp":"2024-11-22T15:04:43.048Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":114,"timestamp":"2024-11-22T15:04:43.162Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T15:04:45.293Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [If]{53598e} at intensamente.wlk:43 exhausted all cases without a match [If]{53598e} at intensamente.wlk:43 exhausted all cases without a match","stack":"Error: [If]{53598e} at intensamente.wlk:43 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at z5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:730)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T15:04:45.313Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T15:04:45.589Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T15:04:45.980Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T15:04:46.334Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T15:04:47.509Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":121,"timestamp":"2024-11-22T15:04:48.083Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T15:04:48.283Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T15:04:51.304Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":123,"timestamp":"2024-11-22T15:05:08.418Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T15:05:08.525Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T15:05:40.064Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":107,"timestamp":"2024-11-22T15:06:06.024Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T15:06:06.128Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":112,"timestamp":"2024-11-22T15:06:08.072Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T15:06:10.971Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":112,"timestamp":"2024-11-22T15:06:11.151Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":124,"timestamp":"2024-11-22T15:06:14.887Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":139,"timestamp":"2024-11-22T15:06:15.374Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T15:06:16.201Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T15:06:21.168Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":116,"timestamp":"2024-11-22T15:06:23.440Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":119,"timestamp":"2024-11-22T15:06:26.547Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:06:26.720Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T15:06:31.191Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:06:31.191Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":114,"timestamp":"2024-11-22T15:06:31.514Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":108,"timestamp":"2024-11-22T15:06:31.622Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:06:37.766Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:06:41.611Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:06:41.703Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":140,"timestamp":"2024-11-22T15:06:53.178Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T15:07:16.515Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T15:07:17.335Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":109,"timestamp":"2024-11-22T15:07:19.354Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:19.354Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":122,"timestamp":"2024-11-22T15:07:19.477Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:19.483Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:19.572Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T15:07:19.682Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:19.688Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:20.341Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:20.409Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":104,"timestamp":"2024-11-22T15:07:20.626Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T15:07:20.800Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T15:07:21.300Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":124,"timestamp":"2024-11-22T15:07:24.961Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":109,"timestamp":"2024-11-22T15:07:28.602Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Send]{42f767} at intensamente.wlk:62 exhausted all cases without a match [Send]{42f767} at intensamente.wlk:62 exhausted all cases without a match","stack":"Error: [Send]{42f767} at intensamente.wlk:62 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T15:07:28.626Z"} +{"level":"error","message":"✘ Completions for node failed: Error: [Assignment]{27c8cb} at intensamente.wlk:62 exhausted all cases without a match [Assignment]{27c8cb} at intensamente.wlk:62 exhausted all cases without a match","stack":"Error: [Assignment]{27c8cb} at intensamente.wlk:62 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:456)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774","timestamp":"2024-11-22T15:07:28.626Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:07:28.730Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":208,"timestamp":"2024-11-22T15:08:49.715Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":144,"timestamp":"2024-11-22T15:08:49.959Z"} +{"level":"error","message":"✘ Failed to get type description: Error: Failed to print, found malformed node Failed to print, found malformed node","node":{"id":"b5952fb5-9fff-4f7f-9657-cf52fe148f8e","metadata":[],"problems":[{"code":"malformedSentence","sourceMap":{"end":{"column":85,"line":63,"offset":1487},"start":{"column":21,"line":63,"offset":1423}}},{"code":"malformedSentence","sourceMap":{"end":{"column":49,"line":64,"offset":1537},"start":{"column":12,"line":64,"offset":1500}}}],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sentences":[{"id":"ad5f56c8-1bc0-4d10-87db-fceca0849b67","metadata":[],"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":62,"offset":1401},"start":{"column":9,"line":62,"offset":1372}},"value":{"args":[],"id":"47ecf429-e86a-451f-ab53-756f352400da","message":"abs","metadata":[],"receiver":{"id":"4a255eb1-6ee1-4e4d-9956-5b929d7d2c54","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":32,"line":62,"offset":1395},"start":{"column":22,"line":62,"offset":1385}}},"scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":38,"line":62,"offset":1401},"start":{"column":22,"line":62,"offset":1385}}},"variable":{"id":"9f49d7c8-3d10-4cc2-ab1b-4876a1ee74a3","metadata":[],"name":"intensidad","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":19,"line":62,"offset":1382},"start":{"column":9,"line":62,"offset":1372}}}},{"id":"1bef4297-a9a0-4c86-8f69-42bb100f9b4e","metadata":[],"name":"override","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":13,"line":63,"offset":1415},"start":{"column":5,"line":63,"offset":1407}}},{"id":"daa0cad6-ac1d-4991-8881-228ca7dccb89","metadata":[],"name":"method","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":20,"line":63,"offset":1422},"start":{"column":14,"line":63,"offset":1416}}},{"id":"fe176ffc-35b4-474a-be91-3b6fc1691679","metadata":[],"name":"method","scope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},{"containerScope":{"containerScope":{"containerScope":{"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]}]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"contributions":{},"includedScopes":[]},"sourceMap":{"end":{"column":11,"line":64,"offset":1499},"start":{"column":5,"line":64,"offset":1493}}}],"sourceMap":{"end":{"column":6,"line":66,"offset":1546},"start":{"column":25,"line":61,"offset":1361}}},"stack":"Error: Failed to print, found malformed node\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3533\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:5372\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3612\n at aln (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:68:3344)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:847\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74770\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)","timestamp":"2024-11-22T15:08:50.934Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":196,"timestamp":"2024-11-22T15:08:51.215Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":131,"timestamp":"2024-11-22T15:08:51.391Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":176,"timestamp":"2024-11-22T15:08:51.567Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":126,"timestamp":"2024-11-22T15:08:51.693Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":206,"timestamp":"2024-11-22T15:08:51.901Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":180,"timestamp":"2024-11-22T15:08:52.083Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":105,"timestamp":"2024-11-22T15:08:52.189Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T15:08:52.296Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":132,"timestamp":"2024-11-22T15:08:52.466Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T15:08:52.568Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":104,"timestamp":"2024-11-22T15:08:55.353Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:09:12.040Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":125,"timestamp":"2024-11-22T15:09:12.166Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T15:09:12.438Z"} +{"level":"error","message":"✘ Failed to rebuild document Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n","stack":"Error: Failed to parse intensamente.wlk: \n-- PARSING FAILED --------------------------------------------------\n\nGot the end of the input\n\nExpected one of the following: \n\nidentifier, whitespace\n\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32415\n at Array.map ()\n at Jfn (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2254:32339)\n at k2.buildEnvironmentFrom (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6721)\n at k2.updateEnvironmentWith (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2285:6456)\n at jL (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:2292)\n at v3.invoke (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157200)\n at o.fire (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:3:157970)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:57871\n at Vr (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:8:1561)","timestamp":"2024-11-22T15:09:12.553Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T15:09:12.860Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.ev [Variable]{cf752a} at intensamente.wlk:101 exhausted all cases without a match intensamente.ev [Variable]{cf752a} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.ev [Variable]{cf752a} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T15:09:13.006Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.even [Variable]{7df580} at intensamente.wlk:101 exhausted all cases without a match intensamente.even [Variable]{7df580} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.even [Variable]{7df580} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T15:09:13.407Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.event [Variable]{b883db} at intensamente.wlk:101 exhausted all cases without a match intensamente.event [Variable]{b883db} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.event [Variable]{b883db} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T15:09:13.588Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento1 [Variable]{4dcae8} at intensamente.wlk:101 exhausted all cases without a match intensamente.evento1 [Variable]{4dcae8} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.evento1 [Variable]{4dcae8} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)\n at Pt (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6189)\n at Gi (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6378)\n at Immediate._onImmediate (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:6142)\n at process.processImmediate (node:internal/timers:483:21)","timestamp":"2024-11-22T15:09:14.512Z"} +{"level":"error","message":"✘ Completions for node failed: Error: intensamente.evento1 [Variable]{a1d0a2} at intensamente.wlk:101 exhausted all cases without a match intensamente.evento1 [Variable]{a1d0a2} at intensamente.wlk:101 exhausted all cases without a match","stack":"Error: intensamente.evento1 [Variable]{a1d0a2} at intensamente.wlk:101 exhausted all cases without a match\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6067\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at kh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1004)\n at Y5n (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:1160)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:38:6056\n at yh (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:42)\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2291:2700\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:2298:3774\n at c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:37:74872\n at Fe (c:\\Users\\Dell\\.vscode\\extensions\\uqbar.wollok-lsp-ide-0.3.6\\out\\server\\src\\server.js:7:8527)","timestamp":"2024-11-22T15:09:15.541Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":119,"timestamp":"2024-11-22T15:09:15.737Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:09:15.737Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T15:09:18.063Z"} +{"level":"info","message":"onRequest - completionItem/resolve","timestamp":"2024-11-22T15:09:20.764Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":130,"timestamp":"2024-11-22T15:09:21.252Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T15:09:21.397Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":133,"timestamp":"2024-11-22T15:09:25.376Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T15:09:25.486Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":146,"timestamp":"2024-11-22T15:09:25.665Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":102,"timestamp":"2024-11-22T15:09:25.844Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":103,"timestamp":"2024-11-22T15:09:26.038Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":115,"timestamp":"2024-11-22T15:09:26.247Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":145,"timestamp":"2024-11-22T15:09:26.399Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":141,"timestamp":"2024-11-22T15:09:26.640Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":110,"timestamp":"2024-11-22T15:09:26.750Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":130,"timestamp":"2024-11-22T15:09:26.882Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":105,"timestamp":"2024-11-22T15:09:28.049Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":153,"timestamp":"2024-11-22T15:09:28.202Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":111,"timestamp":"2024-11-22T15:09:41.571Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":106,"timestamp":"2024-11-22T15:09:41.677Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":101,"timestamp":"2024-11-22T15:09:41.874Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":147,"timestamp":"2024-11-22T15:09:42.112Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":103,"timestamp":"2024-11-22T15:09:42.308Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":101,"timestamp":"2024-11-22T15:09:42.413Z"} +{"level":"info","message":"⌛ Building environment","timeElapsed":106,"timestamp":"2024-11-22T15:10:43.057Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T15:10:43.165Z"} +{"level":"info","message":"⌛ Validating intensamente.wlk","timeElapsed":107,"timestamp":"2024-11-22T15:10:43.735Z"} +{"failures":[],"level":"info","message":"🧪 Test runner executed on c:\\Users\\Dell\\Desktop\\2024-parcial-o-EitanFiszer","result":{"failed":0,"ok":1},"timeElapsed":319,"timestamp":"2024-11-22T15:11:41.006Z"} diff --git a/testExample.wtest b/testExample.wtest index 7886ddb..c64739a 100644 --- a/testExample.wtest +++ b/testExample.wtest @@ -1,9 +1,23 @@ -import example.pepita - +import intensamente.* describe "group of tests for pepita" { - test "pepita has initial energy" { - assert.equals(100, pepita.energy()) + + test "6" { + const evento = new Evento(impacto=10, descripcion="hola") + const emocion1 = new Furia(palabrotas=["AAAAAAAAAAAA"]) + const emocion2 = new Furia(palabrotas=["B"]) + const emocion3 = new Furia(palabrotas=["EWFFFFFFEFWEWFWE"]) + const eitan = new Persona(edad=10, emociones=[emocion1,emocion2]) + const ramiro = new Persona(edad=1, emociones=[emocion1]) + const grupo = new Grupo(integrantes=[eitan,ramiro]) + grupo.vivirEvento(evento) + + //la emocion 1 se vivio dos veces una por ramiro y otra por eitan mientras q la emocion 2 1 sola vez + assert.equals(2, emocion1.cantidadEventos()) + assert.equals(480, emocion1.intensidad()) + assert.equals(500, emocion2.intensidad()) + assert.equals(1, emocion2.cantidadEventos()) } + } \ No newline at end of file